积少成多

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页

2016年6月22日

摘要: Sort a linked list using insertion sort. 思路: 怎么判断链表开始? 怎么判断链表结束? 定义dummy假的头节点,这样的话直接就有了链表头dummy.next 怎么将curr指向的节点插入到in指向的位置? 四步就可以完成:ListNode *tmp = c 阅读全文
posted @ 2016-06-22 15:15 x7b5g 阅读(162) 评论(0) 推荐(0) 编辑

摘要: Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserve the 阅读全文
posted @ 2016-06-22 14:58 x7b5g 阅读(268) 评论(0) 推荐(0) 编辑

摘要: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single 阅读全文
posted @ 2016-06-22 14:43 x7b5g 阅读(175) 评论(0) 推荐(0) 编辑

摘要: Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. 题目:将升序的链表,转化为BST(note:此BST要求是高度平衡,就是树种左右 阅读全文
posted @ 2016-06-22 14:26 x7b5g 阅读(197) 评论(0) 推荐(0) 编辑

摘要: Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For 阅读全文
posted @ 2016-06-22 14:08 x7b5g 阅读(164) 评论(0) 推荐(0) 编辑

摘要: Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the 阅读全文
posted @ 2016-06-22 13:58 x7b5g 阅读(143) 评论(0) 推荐(0) 编辑

摘要: 反转链表 注意是借用 假的头节点,这样算法判断开始和结束,就好很多了. 借用头插法. []dummy/head [] [] [] [] head curr 阅读全文
posted @ 2016-06-22 13:52 x7b5g 阅读(140) 评论(0) 推荐(0) 编辑

摘要: 链表节点定义: 就地逆置 阅读全文
posted @ 2016-06-22 13:49 x7b5g 阅读(290) 评论(0) 推荐(0) 编辑

2016年6月21日

摘要: 内容主要来自搜狗实验室技术交流文档, 编写链接数巨大的高负载服务器程序时,经典的多线程模式和select模式都不再适合了.应该采用epool/kqueue/dev_pool来捕获IO事件. 问题的由来: C10K问题的最大特点就是:设计不够良好的程序,其性能和链接数以及机器性能的关系是非线性的. 例 阅读全文
posted @ 2016-06-21 15:29 x7b5g 阅读(4944) 评论(0) 推荐(0) 编辑

2016年6月15日

摘要: linux提供了一种特殊的文件系统procfs,通常以/proc目录的形式呈现。该目录中包含了许多特殊文件用来对驱动程序和内核信息进行更高层的访问。只要应用程序有正确的访问全息,就可以通过读写这些文件获得信息或设置参数。 例如/proc/cpuinfo给出的是cpu的详细信息: 我的笔记本是4核机器 阅读全文
posted @ 2016-06-15 14:35 x7b5g 阅读(287) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页