/*** point_practice.c ***/ #include<stdio.h> #include<string.h> #include<stdlib.h> int sort( char **myp1 /*in*/, int num1, char (*myp2)[30], int num2, ...
分类:
其他好文 时间:
2019-11-09 21:33:43
阅读次数:
75
Teachers, it is thought, benefit from the practice of reflection, the conscious act of thinking deeply about and carefully examining the interactions ...
分类:
其他好文 时间:
2019-11-08 21:24:12
阅读次数:
103
路由 SPA: single page application 单页面应用 特点: 速度快,数据ajax请求,通过路由,页面不会整体重载 实现: 路由 -> 根据url的不同,加载组件 区别:https://www.cnblogs.com/nangezi/p/9201226.html 使用流程: - ...
分类:
其他好文 时间:
2019-11-05 21:32:45
阅读次数:
86
SPA 介绍: + 后段渲染(存在渲染性能问题) + Ajax前端渲染(前端渲染提高性能,但是不支持浏览器的前进后退操作) + SPA(Single Page Application ) 单页面应用程序: 整个网站只有一个页面,内容的变化通过Ajax局部更新实现,同时支持浏览器地址栏的前进后退操作。 ...
分类:
其他好文 时间:
2019-11-04 19:16:06
阅读次数:
65
[TOC] Contest Info "Practice Link" |Solved|A|B|C|D|E|F|G|H|I|J|K|L| |: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :| |6/12|O| | | |O|O| | |O|O|O| ...
分类:
其他好文 时间:
2019-11-04 09:56:00
阅读次数:
173
[TOC] Contest Info "Practice Link" |Solved|A|B|C|D|E|F|G|H|I|J|K|L|M|N| |: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :|: :| |9/14|O|O|O| |O| ...
分类:
其他好文 时间:
2019-11-03 10:42:53
阅读次数:
131
题目描述 输入一个链表,按链表从尾到头的顺序返回一个ArrayList。 题目链接 思路 遍历链表,把结构保存在list里面,然后把list逆序输出 代码 1 # -*- coding:utf-8 -*- 2 # class ListNode: 3 # def __init__(self, x): ...
分类:
编程语言 时间:
2019-11-01 18:16:04
阅读次数:
94
画直线图 1.最简单的用法: 2.有的时候需要在一张图里画两条或多条线,这个时候就需要figure() 3.当设置坐标轴时,需要设置坐标轴的范围,单位长度,替换文字 4.设置坐标轴之——设置坐标轴的位置 5,图例设置 其中loc参数有多种,best表示自动分配最佳位置,其余为 best->0 upp ...
分类:
其他好文 时间:
2019-10-31 18:51:46
阅读次数:
194
View on GitHub Note: A commonly accepted practice is to use const except in cases of loops and reassignment. However, in this resource I'll be using l ...
分类:
其他好文 时间:
2019-10-29 14:06:09
阅读次数:
132
To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C Programming Language, Mathematics ...
分类:
其他好文 时间:
2019-10-29 13:43:36
阅读次数:
104