最多140个字
发布时间:2015-03-03 16:45:33
反转链表#includestruct ListNode{ int m_nKey; struct ListNode* m_pNext;};void ReverseList(struct ListNode** pHead).........【阅读全文】
发布时间:2015-12-13 13:41:13
//sort函数源码:template <class _RandomAccessIter>inline void sort(_RandomAccessIter __first, _RandomAccessIter __last) { __STL_REQUIRES(_RandomAccessIter, _Mutable_RandomAccessIterator); __STL_REQUIRES(typename iterator_traits<_RandomAccessIter>::value_type, _LessThanCompa.........【阅读全文】
发布时间:2015-09-08 17:16:39
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">/</span><span style="color:#0000CC;">/</span> Forward declaration of isBadVersion API<span style="color.........【阅读全文】
发布时间:2015-09-02 09:54:00
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">*</span><br /></span></li><li> <span style="color:#0000CC;">*</span> Definition <span s.........【阅读全文】
发布时间:2015-09-02 09:43:00
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">/</span><span style="color:#0000CC;">*</span><span style="color:#0000CC;">*</span><br /></span></li.........【阅读全文】
发布时间:2015-08-18 09:05:41
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;">void addtwobits<span style="color:#0000CC;">(</span>char <span style="color:#0000CC;">*</span>sum<span style="color:#0000CC;">,</spa.........【阅读全文】
发布时间:2015-08-18 07:01:54
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;">uint32_t reverseBits<span style="color:#0000CC;">(</span>uint32_t n<span style="color:#0000CC;">)</span> <span style="color:#0000CC;.........【阅读全文】
发布时间:2015-08-17 21:19:47
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">/</span><span style="color:#0000CC;">*</span><span style="color:#0000CC;">*</span><br /></span></li.........【阅读全文】
发布时间:2015-08-17 17:47:45
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">/</span><span style="color:#0000CC;">*</span><span style="color:#0000CC;">*</span><br /></span></li.........【阅读全文】
发布时间:2015-08-17 16:46:48
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">/</span><span style="color:#0000CC;">*</span><span style="color:#0000CC;">*</span><br /></span></li.........【阅读全文】
发布时间:2015-08-15 10:53:08
<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;">#include<span style="color:#0000CC;"><</span>stdio<span style="color:#0000CC;">.</span>h<span style="color:#0000CC;">></span>.........【阅读全文】
发布时间:2015-08-14 09:47:14
在网络编程中,下列情况socket可读:
1,socket内核缓存区中字节数大于或等于其低水位标记SO_RCVLOWAT。
2,socket通信的对方关闭连接。此时对该socket的读操作将返回0.
3,监听socket上有新的连接请求。
4,socket上有未处理的错误。......【阅读全文】
发布时间:2015-08-12 23:14:36
1,select系统调用的用途是:在一段指定的时间内,监听用户感兴趣的fds上的可读,可写和异常事件。<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#FF0000;">int</span> .........【阅读全文】
发布时间:2015-08-12 20:10:42
获取core dump的最大好处是,它能保存问题发生时的状态。<br />1,用ulimit命令可以查看当前的内核转储功能是否有效。<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li>qinchao@linux104:~$ ulimit -c</li><li>0.........【阅读全文】
发布时间:2015-08-12 16:32:47
/**
* Definition for singly-linked list.......【阅读全文】
发布时间:2015-08-12 15:21:50
https://leetcode.com/problems/add-two-numbers/<br /><div id="codeText" class="codeText"><ol style="margin:0 1px 0 0;padding:5px 0pt;" start="1" class="dp-css none_number"><li><span style="color:#000000;"><span style="color:#0000CC;">/</span><span style="color:#0000CC;">*</span><span style=.........【阅读全文】
发布时间:2015-08-04 10:06:58
bisect :在提交历史中进行二分查找来尽快地确定哪一次提交引入了错误。例如你刚刚推送了一个代码发布版本到产品环境中,对代码为什么会表现成那样百思不得其解。你回到你的代码中,还好你可以重现那个问题,但是找不到在哪里。你可以对代码执行 bisect 来寻找。
首先你运行 git bisect start 启动,然后你用 git b.........【阅读全文】
发布时间:2015-07-28 20:12:37
<p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;color:#333333;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;line-height:30px;white-space:normal;background-color:#FFFFFF;">Given a sorted array of integers, find the starting and ending position of a give.........【阅读全文】
发布时间:2015-07-11 13:01:40
https://leetcode.com/problems/word-frequency/<br /># Read from the file words.txt and output the word frequency list to stdout.<br />awk '{for(i=1;i<=NF;i++){arr[$i]++}} END{for(w in arr){print w" "arr[w]}}' words.txt|sort -nrk 2<br />......【阅读全文】
发布时间:2015-06-26 21:14:30
<p style="margin-top:4px;margin-bottom:4px;padding-top:2px;padding-bottom:2px;font-family:Arial, Helvetica, sans-serif;font-size:12px;line-height:normal;white-space:normal;background-color:#FFFFFF;">//参考《Linux shell脚本攻略 第2版》</p><p style="margin-top:4px;margin-bottom:4px;padding-top:2px.........【阅读全文】