LeetCode的题目种类比较多,感觉应该将自己联系过的题目进行分类,这个就是根据自己做过的题目进行划分,并做一定的总结,会持续更新
Sort:
Two Pointer:
二叉树:
DP:
Math:
栈:
DFS:
LeetCode—**Combination Sum 利用DFS算法
Recursi...
分类:
其他好文 时间:
2015-03-22 09:24:16
阅读次数:
167
在web页面开发时,我们经常会遇到下列情况:1.一个标签仅仅是要触发onclick行为;2.表现上要有鼠标的pointer指针显示,或者其他类似a标签的视觉效果。比如执行删除操作时,为了避免误操作,我们要弹出对话框让用户确定是否删除。因此我们经常会用链接形式代替 触发onclick事件。代码如下:删...
分类:
Web程序 时间:
2015-03-18 17:59:14
阅读次数:
158
Same with add binary. You can also skip delete the result pointer. But just return result->next. Depends on the interviewer. 1 /** 2 * Definition for....
分类:
其他好文 时间:
2015-03-18 07:47:51
阅读次数:
114
glVertexAttribPointer( GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride,const GLvoid * pointer);参数:pointer指定一个指针,指向数组中第一个顶点...
Copy List with Random Pointer问题:A linked list is given such that each node contains an additional random pointer which could point to any node in the ...
分类:
其他好文 时间:
2015-03-15 12:18:07
阅读次数:
96
Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set toNULL.Initially, all next ...
分类:
其他好文 时间:
2015-03-15 00:28:29
阅读次数:
141
在如下的主函数里面调用swap函数,问哪一个才能正确交换a,b两变量的值?int main(){ int a=3,b=5; int *pointer_1 = &a; int *pointer_2 = &b; swap(pointer_1,pointer_2); printf("%d %d",*poi...
分类:
其他好文 时间:
2015-03-14 19:46:27
阅读次数:
110
if (...){ class a;}在if语句结束后,class a的析构函数被调用。很简单但是经常会疑惑或者犯错误,不知道析构函数什么时候调用。而且如果class a中含有指针,然后给class b赋值后,经常会犯一个知名的错误。class a{int i;int * pointer;...}....
分类:
其他好文 时间:
2015-03-12 12:55:22
阅读次数:
131
定义一个指针变量指针变量的使用如int c = 76;int * pointer = &c;则*pointer 为 pointer 所指向的存储单元的内容,是变量C而不是数字76另:指针变量也是变量,是变量就有地址。
分类:
编程语言 时间:
2015-03-11 23:05:38
阅读次数:
132
在开机时,由于80x86的特性CS(Code Segment)这个寄存器中放的都是1,而IP(Instruction Pointer)这个寄存器中全部放着0,换句话说,CS=FFFF而IP=0000。此时,CPU就依据CS和IP的值,到FFFF0H去执行那个地方所放的指令。这时候,由于FFFF0H已...
分类:
系统相关 时间:
2015-03-10 23:03:10
阅读次数:
219