0:000> bp 0012f2fc "j @ecx == 0 '';'gc'"0:000> g j代表judgement,与c++中的condition?A:B类似。如果断点处ecx是0,则停下;否则go until next breakpoint(gc).
分类:
数据库 时间:
2014-07-16 22:51:13
阅读次数:
218
安卓开发学习笔记1.安卓开发之环境搭建2.SDK目录结构和adb工具及命令介绍3.创建第一个android项目1.打开Eclipse,选择File——>new——>others...2.在弹出的窗口中选择Android展开——>选择Android Application Project——>next...
分类:
移动开发 时间:
2014-07-16 21:53:51
阅读次数:
266
#include#includevoid getNext(int *Next,char* src){ int i,j; Next[0]=-1; i=0; j=-1; int N=strlen(src); while(i<N-1){ if(j==-1||src[i]==src[j]){ ++i;...
分类:
其他好文 时间:
2014-07-16 21:33:22
阅读次数:
222
学习PHP中,学习完语法,开始尝试实现数据结构,今天实现单链表id=$id; $this->name=$name; $this->next=null; } } class linklist //链表的数据结构 { ...
分类:
Web程序 时间:
2014-07-16 21:20:40
阅读次数:
227
All good so far. We next want to delete the branch on github. However, if we do this the naive way:git push origin :masterwe just get an error like th...
分类:
其他好文 时间:
2014-07-16 19:33:09
阅读次数:
231
差点儿全部编程语言中都提供了"生成一个随机数"的方法,也就是调用这种方法会生成一个数,我们事先也不知道它生成什么数。比方在.Net中编写以下的代码:Random rand = newRandom();Console.WriteLine(rand.Next());执行后结果例如以下:Next()方法用...
分类:
编程语言 时间:
2014-07-13 12:37:13
阅读次数:
272
不知道为什么{3,4,1}就是通不过。/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), n...
分类:
其他好文 时间:
2014-07-13 12:25:11
阅读次数:
236
GDB常用命令 运行 run(简写r): 运行程序,当遇到断点后,程序会在断点处停止运行,等待用户输入下一步的命令。 continue(简写c):继续执行,到下一个断点处(或运行结束) next(简写n): 单步跟踪程序,当遇到函数调用时,直接调用,不进入此函数体; step(简写s):单步调试如果...
分类:
数据库 时间:
2014-07-13 09:01:02
阅读次数:
252
下载tomcat8.0.9
http://tomcat.apache.org/download-80.cgi
选择最后一个,然后出现exe文件,直接下一步,下一步就行了
点full
如果只是本人使用,可以不设置管理员,全部默认值
后面的直接next就行了...
分类:
其他好文 时间:
2014-07-12 23:52:05
阅读次数:
354
1 #include 2 #include 3 typedef struct Node 4 { 5 int data; 6 struct Node *next; 7 }Node,*LinkList; 8 9 void initList(LinkList *L)10 {11 ...
分类:
其他好文 时间:
2014-07-12 14:38:30
阅读次数:
201