
Leetcode
pehaps
这个作者很懒,什么都没留下…
展开
-
leetcode Minimum Window Substring
leetcode Minimum Window SubstringGiven a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For example,S = "ADOBECODEBANC"T =原创 2013-08-16 18:06:22 · 678 阅读 · 0 评论 -
leecode 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 preserve the original relative order of the nodes in each of t原创 2013-10-22 19:40:53 · 571 阅读 · 0 评论 -
Largest Rectangle in Histogram
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.Above is a histogram where width of ea原创 2013-10-22 19:44:35 · 586 阅读 · 0 评论 -
Container With Most Water
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find tw原创 2013-10-22 19:45:24 · 645 阅读 · 0 评论 -
leecode Decode Ways
Decode WaysA message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message containing digits, d原创 2013-10-22 19:47:27 · 689 阅读 · 0 评论