
链表
文章平均质量分 71
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 237. Delete Node in a Linked List(删除链表中的一个节点)
原题网址:https://leetcode.com/problems/delete-node-in-a-linked-list/Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linke原创 2016-04-06 06:48:23 · 558 阅读 · 0 评论 -
LeetCode 146. LRU Cache(LRU缓存)
原题网址:https://leetcode.com/problems/lru-cache/Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key) - Get原创 2016-05-26 01:24:27 · 858 阅读 · 0 评论 -
LeetCode 61. Rotate List(旋转链表)
原题网址:https://leetcode.com/problems/rotate-list/Given a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->5->NULL and k = 2,return 4-原创 2016-05-21 09:13:10 · 970 阅读 · 0 评论 -
LeetCode 83. Remove Duplicates from Sorted List(删除重复节点)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-list/Given a sorted linked list, delete all duplicates such that each element appear only once.For example,Given 1->1->2, r原创 2016-05-22 05:36:09 · 503 阅读 · 0 评论 -
LeetCode 86. Partition List(链表分区)
原题网址:https://leetcode.com/problems/partition-list/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 pres原创 2016-05-23 00:34:24 · 537 阅读 · 0 评论 -
LeetCode 92. Reverse Linked List II(翻转链表)
原题网址:https://leetcode.com/problems/reverse-linked-list-ii/Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,原创 2016-05-23 00:34:57 · 436 阅读 · 0 评论 -
LeetCode 369. Plus One Linked List(链表加1)
原题网址:https://leetcode.com/problems/plus-one-linked-list/Given a non-negative number represented as a singly linked list of digits, plus one to the number.The digits are stored such that the most原创 2016-06-29 02:38:17 · 2270 阅读 · 0 评论 -
LeetCode 109. Convert Sorted List to Binary Search Tree(链表到二叉搜索树)
原题网址:https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.方法:使用慢指针原创 2016-05-24 00:12:46 · 603 阅读 · 0 评论 -
LeetCode 82. Remove Duplicates from Sorted List II(删除链表中的重复节点)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original原创 2016-05-22 05:32:45 · 707 阅读 · 0 评论 -
LeetCode 138. Copy List with Random Pointer(拷贝随机指针)
原题网址:https://leetcode.com/problems/copy-list-with-random-pointer/A linked list is given such that each node contains an additional random pointer which could point to any node in the list or nul原创 2016-05-27 00:22:32 · 527 阅读 · 0 评论 -
LeetCode 25. Reverse Nodes in k-Group(反转链表)
原题网址:https://leetcode.com/problems/reverse-nodes-in-k-group/Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a m原创 2016-05-20 10:35:18 · 774 阅读 · 0 评论 -
LeetCode 362. Design Hit Counter(计数器)
原题网址:https://leetcode.com/problems/design-hit-counter/Design a hit counter which counts the number of hits received in the past 5 minutes.Each function accepts a timestamp parameter (in seco原创 2016-06-23 00:45:16 · 2390 阅读 · 0 评论 -
LeetCode 445. Add Two Numbers II
原题网址:https://leetcode.com/problems/add-two-numbers-ii/You are given two linked lists representing two non-negative numbers. The most significant digit comes first and each of their nodes contain原创 2017-01-04 09:33:07 · 935 阅读 · 0 评论 -
LeetCode 24. Swap Nodes in Pairs(交换节点)
原题网址:https://leetcode.com/problems/swap-nodes-in-pairs/Given a linked list, swap every two adjacent nodes and return its head.For example,Given 1->2->3->4, you should return the list as 2-原创 2016-05-19 07:29:56 · 388 阅读 · 0 评论 -
LeetCode 21. Merge Two Sorted Lists(合并链表)
原题网址:https://leetcode.com/problems/merge-two-sorted-lists/Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lis原创 2016-05-19 07:11:07 · 390 阅读 · 0 评论 -
LeetCode 19. Remove Nth Node From End of List(删除链表)
原题网址:https://leetcode.com/problems/remove-nth-node-from-end-of-list/Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1->2原创 2016-05-19 06:35:59 · 366 阅读 · 0 评论 -
LeetCode 328. Odd Even Linked List(链表的奇偶调整)
原题网址:https://leetcode.com/problems/odd-even-linked-list/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原创 2016-04-28 01:25:26 · 510 阅读 · 0 评论 -
LeetCode 2. Add Two Numbers(两数相加)
原题网址:https://leetcode.com/problems/add-two-numbers/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原创 2016-05-01 07:02:43 · 896 阅读 · 0 评论 -
LeetCode 160. Intersection of Two Linked Lists
原题网址:https://leetcode.com/problems/intersection-of-two-linked-lists/Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following原创 2016-05-25 01:41:05 · 463 阅读 · 0 评论 -
LeetCode 147. Insertion Sort List(插入有序链表)
原题网址:https://leetcode.com/problems/insertion-sort-list/Sort a linked list using insertion sort.方法:/** * Definition for singly-linked list. * public class ListNode { * int val; * Li原创 2016-05-26 01:20:22 · 768 阅读 · 0 评论 -
LeetCode 143. Reorder List(重组链表)
原题网址:https://leetcode.com/problems/reorder-list/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' va原创 2016-05-26 02:08:26 · 1589 阅读 · 0 评论 -
LeetCode 142. Linked List Cycle II(循环链表)
原题网址:https://leetcode.com/problems/linked-list-cycle-ii/Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Note: Do not modify the linked list.原创 2016-05-26 03:07:42 · 1120 阅读 · 0 评论 -
LeetCode 141. Linked List Cycle(链表循环)
原题网址:https://leetcode.com/problems/linked-list-cycle/Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?方法:使用两个指针。/** * Defini原创 2016-05-27 00:22:22 · 484 阅读 · 0 评论 -
LeetCode 203. Remove Linked List Elements(删除链表元素)
原题网址:https://leetcode.com/problems/remove-linked-list-elements/Remove all elements from a linked list of integers that have value val.ExampleGiven: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, v原创 2016-05-04 07:28:07 · 464 阅读 · 0 评论 -
LeetCode 206. Reverse Linked List(翻转链表)
原题网址:https://leetcode.com/problems/reverse-linked-list/Reverse a singly linked list.click to show more hints.Hint:A linked list can be reversed either iteratively or recursively. Could原创 2016-05-04 08:22:21 · 697 阅读 · 0 评论 -
LeetCode 148. Sort List(链表排序)
原题网址:https://leetcode.com/problems/sort-list/Sort a linked list in O(n log n) time using constant space complexity.方法一:分区排序,以第一个元素为参照,分为大中小。/** * Definition for singly-linked list. * publi原创 2016-05-26 01:18:10 · 871 阅读 · 0 评论 -
LeetCode 346. Moving Average from Data Stream(数据流移动平均值)
原题网址:https://leetcode.com/problems/moving-average-from-data-stream/Given a stream of integers and a window size, calculate the moving average of all integers in the sliding window.For exampl原创 2016-05-01 06:23:14 · 2979 阅读 · 0 评论 -
LeetCode 234. Palindrome Linked List(对称链表)
原题网址:https://leetcode.com/submissions/detail/58253344/Given a singly linked list, determine if it is a palindrome.Follow up:Could you do it in O(n) time and O(1) space?思路:普通的思路是可以生成一个反转的原创 2016-04-06 05:36:23 · 1014 阅读 · 0 评论 -
LeetCode 460. LFU Cache
原题网址:https://leetcode.com/problems/lfu-cache/Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the following operations: getand put.get(key) -原创 2017-01-06 05:34:25 · 1769 阅读 · 0 评论