码迷,mamicode.com
首页 >  
搜索关键字:runner    ( 845个结果
【Cracking the Code Interview(5th edition)】二、链表(C++)
链表结点类型定义:1 class Node {2 public:3 int data = 0;4 Node *next = nullptr;5 6 Node(int d) {7 data = d;8 }9 };快行指针(runner)技巧:同时...
分类:编程语言   时间:2014-05-21 04:26:19    阅读次数:444
Java Multi-Thread
1. 2种实现方法: thread类和runnable接口extends Theadpackage demo1;class Runner extends Thread { @Override public void run() { for (int i=0;i list1 ...
分类:编程语言   时间:2014-05-17 18:51:36    阅读次数:417
Junit与spring TestContext框架整合
所需要的包: junit需要是4.5以上 org.springframework.test-XXX.RELEASE.jar package test; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; i...
分类:编程语言   时间:2014-05-15 04:21:45    阅读次数:357
Leetcode: Swap Nodes in Pairs
坑爹地多次过,全都是写程序时不注意的小问题,书写习惯还需要进一步改善。遇到的bug有:忘记return语句;定义ListNode runner = head.next,却将判断head==null的情况放在这句之后; 忘记了新的head将不会是原来的那个head,而是head.next;所以以后遇到...
分类:其他好文   时间:2014-05-10 06:59:37    阅读次数:320
Leetcode: Two Sum
这道题看似简单,其实很坑爹啊,动不动就是Time Limit Exceeded, 比如我下面这段TLE的代码,我感觉方法是对的,但是too naive,算法复杂度到了O(N^2),自然就TLE了而且有一些小语法错误需要注意:for(runner=current+1;;)不能用>;一定所有的case都...
分类:其他好文   时间:2014-05-06 11:31:09    阅读次数:405
845条   上一页 1 ... 83 84 85
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!