Sequential ListSequential list storage structure:#define LIST_INIT_SIZE 20 #define LIST_INCREASE 10typedef int Elemtype;typedef struct{ ElemType data; ...
分类:
其他好文 时间:
2016-10-19 20:03:56
阅读次数:
115
SMR之Shingled magnetic recording Area Density Increase Requires New Data Management 1 总述 全文主要介绍了在SMR磁盘上相对于传统磁盘的数据新的组织方式。主要内容包括SMR磁盘的瓦结构特点;在host-managed ...
分类:
Web程序 时间:
2016-10-17 20:13:15
阅读次数:
257
代码复审 我对我的搭档陈鸿超同学的第一次作业进行了复审: 首先根据http://blog.fogcreek.com/increase-defect-detection-with-our-code-review-checklist-example/提供的Code Review Checklist进行评 ...
分类:
其他好文 时间:
2016-10-01 19:15:47
阅读次数:
125
题意: 给定一张N个点的完全图,可以从任何一个点出发,同一个点可以经过多次。询问总路径长度不超过M的情况下,最多能够经过多少个点。 思路: 首先我们能够想到一个最简单的模拟算法。 建立数组dist[][],dist[i][j]表示经过i个点后,最后停留在j所以经过的最短路径长度。 那么有如下递推公式 ...
分类:
其他好文 时间:
2016-09-06 12:18:56
阅读次数:
163
while 循环 有时候我们不确定需要循环几次。就像一个司机不知道自己需要什么时候加油一样。程序可以这样写: while petrol_filling: increase price show price add petrol python有while语句。让我们来创建一个猜数字的游戏吧: x = ...
分类:
其他好文 时间:
2016-09-05 13:48:39
阅读次数:
113
DESCRIPTION Eric has an array of integers a1,a2,...,ana1,a2,...,an. Every time, he can choose a contiguous subsequence of length kk and increase every ...
分类:
其他好文 时间:
2016-08-20 17:35:14
阅读次数:
122
1、对象交互 面向对象的核心:看到物体的属性,物体之间怎么交互 UML Display Value Limit Increase() Getvalue() Display Value Limit Increase() Getvalue() 对象:hour和minue 设计:每个对象和类之间尽可能独立 ...
分类:
编程语言 时间:
2016-08-15 22:21:20
阅读次数:
149
gcc -I -L -l -D -g -O -o -Wall about the -0 option.. ref to the following table.. Set the compiler's optimization level. +increase ++increase more +++ ...
分类:
其他好文 时间:
2016-08-04 21:39:04
阅读次数:
245
A题 Maximum Increase 大水题。最长连续递增子序列有多长。 B题 Powers of Two 这道题有点意思昂,问你有几对,满足巴拉巴拉。 先说一下一开始吧,我的做法是直接暴力两重for循环去做,明显TLE了。一开始没注意n²。 然后想啊,这TLE咋办,咱剪枝吧。个么,就加了一下这几 ...
分类:
其他好文 时间:
2016-07-31 17:18:36
阅读次数:
180