上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页
摘要: 对于第2个pascal triangle,通过观察可以发现,其实只需要2个额外的变量来记录,于是就设了个tmp数组。整体有点DP问题中的滚动数组的感觉。 1 #include 2 #include 3 using namespace std; 4 5 class Solution { 6 pu... 阅读全文
posted @ 2014-11-02 16:04 Ryan in C++ 阅读(228) 评论(0) 推荐(0) 编辑
摘要: http://linux-circles.blogspot.com/2012/11/how-to-capture-packets-with-tcpdump.htmlSee the list of interfaces on which tcpdump can listen# /usr/sbin/tc... 阅读全文
posted @ 2014-11-01 22:01 Ryan in C++ 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 之前是通过hash来做,O(n)。这次为了熟悉通用性的解法,通过双指针来做。时间复杂度为O(nlogn)(即sort的复杂度)。主要是关于sort的用法上不太熟,关于自定义sort规则。C++ Reference中给的示例代码如下: 1 // sort algorithm example 2 #in... 阅读全文
posted @ 2014-10-31 10:28 Ryan in C++ 阅读(303) 评论(0) 推荐(0) 编辑
摘要: ls -l |grep "^d"|wc -l统计文件夹下文件的个数,包括子文件夹里的ls -lR|grep "^-"|wc -l如统计/home/han目录(包含子目录)下的所有js文件则:ls -lR /home/han|grep js|wc -l 或 ls -l "/home/han"|grep... 阅读全文
posted @ 2014-10-30 16:41 Ryan in C++ 阅读(667) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution { 2 public: 3 int minDepth(TreeNode *root) { 4 if (root == nullptr) return 0; 5 if (root->left != nullptr&&root-... 阅读全文
posted @ 2014-10-29 10:44 Ryan in C++ 阅读(150) 评论(0) 推荐(0) 编辑
摘要: recursive 1 #include 2 #include 3 using namespace std; 4 5 struct TreeNode { 6 int val; 7 TreeNode *left; 8 TreeNode *right; 9 ... 阅读全文
posted @ 2014-10-29 09:37 Ryan in C++ 阅读(204) 评论(0) 推荐(0) 编辑
摘要: diff --git a/include/net/tcp.h b/include/net/tcp.h@@ -1013,8 +1048,13 @@ static inline u32 keepalive_time_elapsed(const struct tcp_sock *tp)该函数在2.6.32... 阅读全文
posted @ 2014-10-27 14:03 Ryan in C++ 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1.解压缩tar.gz:tar -zxvf archive_name.tar.gz2.解压缩tar.xz(1)首先使用xz解压 tar.xz文件: xz -d linux-3.8.4.tar.xz 这个操作会将linux-3.8.4.tar.xz文件解压成linux-3.8.4.tar,然后我们再对... 阅读全文
posted @ 2014-10-27 13:52 Ryan in C++ 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://cn.opensuse.org/OpenSUSE_%E5%86%85%E6%A0%B8%E7%BC%96%E8%AF%91%E6%95%99%E7%A8%8B_(kernel_2.6.x)Contents[hide]1声明2简述3基础知识3.1什么是内核3.2什么是补丁3.3为什么要重... 阅读全文
posted @ 2014-10-27 13:48 Ryan in C++ 阅读(540) 评论(0) 推荐(0) 编辑
摘要: 1 Server: 5, win: 20pkt, SRU: 256KB, link_buf: 32pkt, Seed: 1, 2 Block_trans: 1350200B, RTT: 100us, RTT_rand: 20us, SYN_del: 0-0us 3 4 0.99... 阅读全文
posted @ 2014-10-27 11:10 Ryan in C++ 阅读(453) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页