木落长安rr

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2019年3月23日

摘要: 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 @ 2019-03-23 16:05 木落长安rr 阅读(114) 评论(0) 推荐(0) 编辑

摘要: Reverse a linked list from position m to n. Do it in one-pass. Note: 1 ≤ m ≤ n ≤ length of list. Example: 根据经验,先建立一个虚结点dummy node,连上原链表的头结点,这样的话就算头结点变 阅读全文
posted @ 2019-03-23 11:29 木落长安rr 阅读(275) 评论(0) 推荐(0) 编辑

摘要: Given a linked list, determine if it has a cycle in it. To represent a cycle in the given linked list, we use an integer poswhich represents the posit 阅读全文
posted @ 2019-03-23 10:42 木落长安rr 阅读(324) 评论(0) 推荐(0) 编辑