随笔分类 -  leetcode

上一页 1 2 3 4 5 6 7 下一页

[leetcode]Triangle
摘要:TriangleGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given... 阅读全文

posted @ 2014-07-22 01:41 喵星人与汪星人 阅读(308) 评论(0) 推荐(0) 编辑

[leetcode]Pascal's Triangle II
摘要:Pascal's Triangle IIGiven an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your alg... 阅读全文

posted @ 2014-07-22 01:01 喵星人与汪星人 阅读(253) 评论(0) 推荐(0) 编辑

[leetcode]Pascal's Triangle
摘要:Pascal's TriangleGivennumRows, generate the firstnumRowsof Pascal's triangle.For example, givennumRows= 5,Return[ [1], [1,1], [1,2,1], [1,3,... 阅读全文

posted @ 2014-07-22 00:35 喵星人与汪星人 阅读(413) 评论(0) 推荐(0) 编辑

[leetcode]Remove Duplicates from Sorted Array II
摘要:Remove Duplicates from Sorted Array IIFollow up for "Remove Duplicates":What if duplicates are allowed at mosttwice?For example,Given sorted array A =... 阅读全文

posted @ 2014-07-21 23:55 喵星人与汪星人 阅读(242) 评论(0) 推荐(0) 编辑

[leetcode]Remove Duplicates from Sorted Array
摘要:Remove Duplicates from Sorted ArrayGiven a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new lengt... 阅读全文

posted @ 2014-07-21 23:35 喵星人与汪星人 阅读(262) 评论(0) 推荐(0) 编辑

[leetcode]Remove Element
摘要:Remove ElementGiven an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. ... 阅读全文

posted @ 2014-07-21 23:11 喵星人与汪星人 阅读(169) 评论(0) 推荐(0) 编辑

[leetcode]Sort List
摘要:Sort ListSort a linked list inO(nlogn) time using constant space complexity.算法思想:时间复杂度为O(nlogn)的排序算法,有快排、归并、堆排序,快排需要往前遍历,因此不适合单链表,堆排序可以,但是需要O(n)的空间,因此... 阅读全文

posted @ 2014-07-21 22:33 喵星人与汪星人 阅读(258) 评论(0) 推荐(0) 编辑

[leetcode]Reverse Linked List II
摘要:Reverse Linked List IIReverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return... 阅读全文

posted @ 2014-07-21 21:19 喵星人与汪星人 阅读(183) 评论(0) 推荐(0) 编辑

[leetcode]Reverse Nodes in k-Group
摘要:Reverse Nodes in k-GroupGiven a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a... 阅读全文

posted @ 2014-07-21 20:23 喵星人与汪星人 阅读(307) 评论(0) 推荐(0) 编辑

[leetcode]Reorder List
摘要:Reorder ListGiven a singly linked listL: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' val... 阅读全文

posted @ 2014-07-21 15:13 喵星人与汪星人 阅读(277) 评论(0) 推荐(0) 编辑

[leetcode]Insertion Sort List
摘要:Insertion Sort ListSort a linked list using insertion sort.算法思路:最基本的插入排序,时间复杂度O(n*n),空间复杂度O(1)代码: 1 public class Solution { 2 public ListNode inse... 阅读全文

posted @ 2014-07-21 14:50 喵星人与汪星人 阅读(171) 评论(0) 推荐(0) 编辑

[leetcode]Partition List
摘要:Partition ListGiven a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should pres... 阅读全文

posted @ 2014-07-20 17:07 喵星人与汪星人 阅读(172) 评论(0) 推荐(0) 编辑

[leetcode]Remove Duplicates from Sorted List II
摘要:Remove Duplicates from Sorted List IIGiven a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the or... 阅读全文

posted @ 2014-07-20 15:14 喵星人与汪星人 阅读(186) 评论(0) 推荐(0) 编辑

[leetcode]Remove Duplicates from Sorted List
摘要:Remove Duplicates from Sorted ListGiven a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, r... 阅读全文

posted @ 2014-07-20 14:49 喵星人与汪星人 阅读(191) 评论(0) 推荐(0) 编辑

[leetcode]Merge k Sorted Lists
摘要:Merge k Sorted ListsMergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.这道题,第一次刷是过了,第二次同样的代码超时了,看来case是在不断... 阅读全文

posted @ 2014-07-20 01:18 喵星人与汪星人 阅读(280) 评论(0) 推荐(0) 编辑

[leetcode]Merge Two Sorted Lists
摘要:Merge Two Sorted ListsMerge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the fir... 阅读全文

posted @ 2014-07-19 18:05 喵星人与汪星人 阅读(292) 评论(0) 推荐(0) 编辑

[leetcode]Rotate List
摘要:Rotate ListGiven 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-... 阅读全文

posted @ 2014-07-19 17:35 喵星人与汪星人 阅读(167) 评论(0) 推荐(0) 编辑

[leetcode]Swap Nodes in Pairs
摘要:Swap Nodes in PairsGiven a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2-... 阅读全文

posted @ 2014-07-19 16:32 喵星人与汪星人 阅读(224) 评论(0) 推荐(0) 编辑

[leetcode]Remove Nth Node From End of List
摘要:Remove Nth Node From End of ListGiven a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2... 阅读全文

posted @ 2014-07-19 16:03 喵星人与汪星人 阅读(217) 评论(0) 推荐(0) 编辑

[leetcode]Linked List Cycle II
摘要:Linked List Cycle IIGiven a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without u... 阅读全文

posted @ 2014-07-19 15:36 喵星人与汪星人 阅读(215) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 下一页