Given a list, rotate the list to the right by k places, where k is non-negative.
For example:
Given 1->2->3->4->5->NULL and k = 2,
return 4->5->1->2->3->NULL.
这里的k可能是比链表长度要大的数字,因此实际旋转的位置就是k%le...
分类:
其他好文 时间:
2014-08-20 22:46:23
阅读次数:
253
-- chapter1. //7.-- Le`s Make a Gmae Using Molehill* Vector3D: containing an x, y, and z component* Normal: a Vector3D that has a length of one* Matri...
分类:
其他好文 时间:
2014-08-20 19:35:42
阅读次数:
227
题意:就是让你求出最小的字符矩阵面积,这个矩阵是这个大矩阵里能够循环的,但是并不一定是全部循环相同的,部分相同也算循环,比如样例。
思路:这题挺好的,以前没有想到二维字符串数组也可以用next数组求出其循环节,现在这题正好补了这个空。
解法:把每一个字符串当做字符进行求next数组,然后求出最小的循环字符串长度,即:len-next[len]。因为以前求循环节是len/(len-next[le...
分类:
其他好文 时间:
2014-08-20 16:30:12
阅读次数:
212
题意:。。。
这道题就是区间问题三种中的区间完全覆盖问题,不懂的可以看我上一篇也是区间完全覆盖。
直接上代码:
#include
#include
#include
using std::sort;
struct node{
double le, ri;
}s[1005];
int cmp(node a, node b)
{
return a.le < b.le;
}
int ma...
分类:
其他好文 时间:
2014-08-20 00:02:06
阅读次数:
297
在Linuxshell编程中,经常会用到判断字符串是否相等,可用于判断字符串是否相等的操作符有‘-eq’(相等),‘-ne’(不等于),‘-lt’(小于),‘-le’(小于或等于),‘-gt’(大于)或‘-ge’(大于或等于),以及=,==,!=,<,>。在bash指南中,字母操作符和符号操作..
分类:
系统相关 时间:
2014-08-19 16:52:26
阅读次数:
2154
python的算法简要到你可以见性直指:def q_sort(l): if len(l)=p] return q_sort(small_part)+[p]+q_sort(big_part)太好理解了吧!这就是算法的精要?还有更简单的,def q_sort(l): if le...
分类:
编程语言 时间:
2014-08-19 10:54:34
阅读次数:
376
css产出sourcemap有什么用呢,可能大家要问这个问题了。请移步这里https://developers.google.com/chrome-developer-tools/docs/css-preprocessors?hl=zh-CN在chrome中我们通过sourcemap可以直接调试le...
分类:
Web程序 时间:
2014-08-18 16:05:22
阅读次数:
276
This article come from HEREARS-L1: LearningTuesday 10:30–12:30; Oral Session; Room: Leonard de Vinci10:30ARS-L1.1—GROUP STRUCTURED DIRTY DICTIONARY LE...
分类:
其他好文 时间:
2014-08-18 10:26:04
阅读次数:
1784
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:
其他好文 时间:
2014-08-17 16:55:02
阅读次数:
202
approach 英 [?'pr??t?] 美 [?'prot?] n. 方法;途径;接近vt. 接近;着手处理vi. 靠近emulate 英 ['emj?le?t] 美 ['?mjulet] vt. 仿真;模仿;尽力赶上;同…竞争n. 仿真;仿效correct 英 ...
分类:
其他好文 时间:
2014-08-15 19:32:49
阅读次数:
204