07 2015 档案
摘要:7.30适配器模式http://www.jikexueyuan.com/course/1335.html
阅读全文
摘要:7.30搞定 基本可以apue16章linux socke编程实例:一个简单的echo服务器程序http://blog.csdn.net/linyt/article/details/1719647linux socke编程实例:一个简单的echo服务器程序(2)http://blog.csdn.ne...
阅读全文
摘要:Linux Shell脚本教程:30分钟玩转Shell脚本编程http://c.biancheng.net/cpp/shell/Linux入门教程(更新完毕)http://c.biancheng.net/cpp/linux/刷掉此页2015.7.29始
阅读全文
摘要:http://www.lintcode.com/zh-cn/problem/search-a-2d-matrix-ii/class Solution {public: /** * @param matrix: A list of lists of integers * @par...
阅读全文
摘要://Definition of TreeNode:class TreeNode {public: int val; TreeNode *left, *right; TreeNode() { this->val = NULL; } TreeNode(int ...
阅读全文
摘要:class Solution {public: char *m_pData; Solution() { this->m_pData = NULL; } Solution(char *pData) { this->m_pData = pData; ...
阅读全文
摘要:深入理解JavaScript系列http://www.cnblogs.com/TomXu/archive/2011/12/15/2288411.htmlJavaScript Gardenhttp://bonsaiden.github.io/JavaScript-Garden/
阅读全文
摘要:写了个脚本自动生成pdf上传github受不了每次相同的commit决定使用脚本传参简单好用使用加粗方法,更复杂的可以参考下面两个详解。如何给shell脚本传参数http://jingyan.baidu.com/article/b24f6c822645b786bfe5daff.html#!/usr/...
阅读全文
摘要:之前为了写leetcode cpp pdf学会了github这次完整学习一下。7.15-7.16完成撒花http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000git-cheet-sheeth...
阅读全文
摘要:http://workbench.haefelinger.it/archives/148XeTeX allows me to hack away directly in Unicode. But what’s even more cool is that I can just use the fon...
阅读全文
摘要:如何搭建一个独立博客——简明Github Pages与Hexo教程http://cnfeat.com/2014/05/10/2014-05-11-how-to-build-a-blog/利用github-pages建立个人博客http://coolshell.info/blog/2015/03/gi...
阅读全文
摘要:参考连接:http://www.zhixing123.cn/ubuntu/41953.htmlhttp://sixipiaoyang.blog.163.com/blog/static/6232358820144654028830/一直连接失败无法服务,发现缺少ssh服务安装sshsudo apt-g...
阅读全文
摘要:http://blog.sina.com.cn/s/blog_5e16f1770100grtj.html我们在输入一篇文章或者书的标题的时候,会自动加入当天的日期,但是我们如果想把计算机的时间加入文档,该如何实现呢?解决方案:有两个宏包提供了打印输出时间的功能,The datetime packag...
阅读全文
摘要:http://www.cnblogs.com/xia520pi/archive/2014/06/30/3817109.html[root@localhost bin]#chmod +x date
阅读全文
摘要:leetcode题解https://github.com/DaI253/leetcode-cpp,包含大量pdf历史文件,准备清理其中的历史文件,缩小项目体积。http://my.oschina.net/jfinal/blog/215624git filter-branch --tree-filte...
阅读全文
摘要:双调排序主要参考http://www.cs.rutgers.edu/~venugopa/parallel_summer2012/bitonic_overview.html单机版http://blog.csdn.net/sunmenggmail/article/details/42869235cuda...
阅读全文
摘要:提示sphinx-build没有找到,说明它使用到什么东西,我们没有安装,google了一下,原来是一个python的库,于是在终端输入 sudo easy_install Sphinx,安装成功了。
阅读全文
摘要:这里的测试可以参考,但是实现不怎么样http://www.penglixun.com/tech/program/skip_list_leveldb.html实现详细讲解http://blog.csdn.net/daniel_ustc/article/details/20218489
阅读全文
摘要:在开发异步迭代程序时实现SSP同步协议时需要使用无锁队列实现多生产者消费者队列,研究了一下无锁队列实现。
阅读全文
摘要:leetcode这里链表都没有头结点,因此在处理只有一个节点的链表会出问题。因此需要新增头结点会非常方便操作。ListNode dummy(-1);dummy.next = head;ListNode *prev = &dummy;// ...return dummy.next;ListNode *...
阅读全文
摘要:JavaScript教程http://www.liaoxuefeng.com/wiki/001434446689867b27157e896e74d51a89c25cc8b43bdb30002015/07/04 开始2015/07/06高阶 filter 2015-7-14代码能有多难 7.14-7....
阅读全文
摘要:http://www.liaoxuefeng.com/article/0014211269349633dda29ee3f29413c91fa65c372585f23000
阅读全文
摘要:int getc(FILE *fp);int putc(int c, FILE * fp);#define getchar() getc(stdin)#define putchar() putc((c), stdout)
阅读全文
摘要:1 for(p = fmt; *p; p++) 2 { 3 if(*p != '%') 4 { 5 putchar(*p); 6 continue; 7 } 8 i = ...
阅读全文