2013年2月12日
摘要: I want to change the world, but I can't find the source code.想改变世界,但找不到源代码,这的确比较凄凉。但是如果源代码就在那里,只不过你没去看,那更是悲哀。昨天在cool shell上看到一篇文章(http://coolshell.cn/articles/8990.html),主要讲述如何利用二级指针删除单向链表。代码如下:View Code 1 void remove_if(node ** head, remove_fn rm) 2 { 3 for (node** curr = head; *curr; ) 4 ... 阅读全文
posted @ 2013-02-12 13:10 万事屋madao 阅读(285) 评论(0) 推荐(0) 编辑