【题目】
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would ha...
分类:
其他好文 时间:
2015-05-07 12:35:04
阅读次数:
106
【题目】
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Note:
Elements in a triplet (...
分类:
其他好文 时间:
2015-05-07 10:25:36
阅读次数:
106
题目在这里:https://leetcode.com/problems/remove-nth-node-from-end-of-list/【标签】 Linked List; Two Pointers【个人分析】 这个题目应该算是Linked List里面的基础题。说它基础不是因为它简单,而是因为它....
分类:
编程语言 时间:
2015-05-04 23:53:15
阅读次数:
172
problem:
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
Hide Tags
Linked List Two
Pointers
...
分类:
其他好文 时间:
2015-05-04 12:05:09
阅读次数:
148
题目:https://leetcode.com/problems/3sum-closest/【标签】Array; Two Pointers【个人分析】 这道题和它的姊妹题 3Sum 非常类似, 就不再多说了,具体一些的分析可以参考 [Leetcode][015] 3Sum 1 public cla....
分类:
编程语言 时间:
2015-05-03 07:05:54
阅读次数:
128
题目在这里:https://leetcode.com/problems/3sum/【标签】 Array; Two Pointers【个人分析】 老实交待,这个题卡半天,第一次做不会,抄别人的。过了很久,第二次做,还是不会……。好几次都是Time Limited Error。在看过正确答案之后,...
分类:
编程语言 时间:
2015-05-03 07:05:53
阅读次数:
130
指针数组(array of pointers):存储指针的数组数组指针(a pointer to an array):指向数组的指针,也称为“行指针”指针数组(array of pointers) 定义方法举例:int *a[10] 等价于int *(a[10]) 首先a是一个数组,数组中有1...
分类:
编程语言 时间:
2015-05-01 17:23:08
阅读次数:
165
仔细区别pointers和references。指针和引用有些相似,他们本身都是对存在于某个地方的对象(不是指class)的指示,但是他们有着本质的区别。指针变量存储所指对象的地址,所指的对象可以是null,只要可以寻址就行。而引用是某个已经存在对象的别名,所以不可以先声明一个引用,经过一段时间(代码)后让它指向某个对象。
最好使用C++转型操作符。C++提供了自己的四种转型操作符:
1) st...
分类:
编程语言 时间:
2015-04-24 16:25:34
阅读次数:
141
problem:
Follow up for problem "Populating Next Right Pointers in Each Node".
What if the given tree could be any binary tree? Would your previous solution still work?
Note:
You may ...
分类:
其他好文 时间:
2015-04-24 10:35:50
阅读次数:
136
借助MiniDumpWriteDump函数把崩溃进程的调用堆栈、CPU寄存器等信息写入本地文件。然后我们可以调用我们的BugReport.exe程序,让他发送Dump文件给服务器,然后重启客户端程序。
LONG __stdcall MyExceptionFun( LPEXCEPTION_POINTERS lpExcept)
{
wchar_t szMsg[1024]={0};
wsprin...
分类:
其他好文 时间:
2015-04-23 23:29:45
阅读次数:
202