摘要: Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.ref:http://fisherlei.blogspot.com/2013/01/leetcode-rotate-list.html首先从head开始跑,直到最后一个节点,这时可以得出链表长度len。然后将尾指针指向头指针,将整个圈连起来,接着往前 阅读全文
posted @ 2014-02-14 11:14 Razer.Lu 阅读(607) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree andsum =... 阅读全文
posted @ 2014-02-14 10:38 Razer.Lu 阅读(170) 评论(0) 推荐(0) 编辑