2015年10月9日

摘要: Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.Fo... 阅读全文
posted @ 2015-10-09 16:57 怕忘记 阅读(104) 评论(0) 推荐(0) 编辑
 
摘要: Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possibl... 阅读全文
posted @ 2015-10-09 16:55 怕忘记 阅读(133) 评论(0) 推荐(0) 编辑

2015年9月17日

摘要: Given a strings1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible representation... 阅读全文
posted @ 2015-09-17 23:36 怕忘记 阅读(105) 评论(0) 推荐(0) 编辑
 
摘要: Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should preserve the origi... 阅读全文
posted @ 2015-09-17 23:34 怕忘记 阅读(112) 评论(0) 推荐(0) 编辑
 
摘要: Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.int maximalRectangle(vector>& mat... 阅读全文
posted @ 2015-09-17 23:33 怕忘记 阅读(122) 评论(0) 推荐(0) 编辑
 
摘要: Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histog... 阅读全文
posted @ 2015-09-17 23:22 怕忘记 阅读(111) 评论(0) 推荐(0) 编辑
 
摘要: Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Update (2014-11-02):The si... 阅读全文
posted @ 2015-09-17 22:24 怕忘记 阅读(112) 评论(0) 推荐(0) 编辑

2015年9月12日

摘要: Given 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. It doesn't mat... 阅读全文
posted @ 2015-09-12 14:32 怕忘记 阅读(105) 评论(0) 推荐(0) 编辑
 
摘要: Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a... 阅读全文
posted @ 2015-09-12 13:45 怕忘记 阅读(140) 评论(0) 推荐(0) 编辑

2015年9月10日

摘要: Given 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 multiple ofkthen left-o... 阅读全文
posted @ 2015-09-10 15:18 怕忘记 阅读(187) 评论(0) 推荐(0) 编辑