
单调子序列
文章平均质量分 77
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 329. Longest Increasing Path in a Matrix(矩阵内的最长递增路径)
原题网址:https://leetcode.com/problems/longest-increasing-path-in-a-matrix/ Given an integer matrix, find the length of the longest increasing path. From each cell, you can either move to four dir原创 2016-04-28 01:57:37 · 1653 阅读 · 0 评论 -
LeetCode 334. Increasing Triplet Subsequence(长度为3的递增子序列)
原题网址:https://leetcode.com/problems/increasing-triplet-subsequence/ Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the array. Formally the functio原创 2016-04-29 14:37:07 · 752 阅读 · 0 评论 -
LeetCode 300. Longest Increasing Subsequence(最长递增子序列)
原题网址:https://leetcode.com/problems/longest-increasing-subsequence/ Given an unsorted array of integers, find the length of longest increasing subsequence. For example, Given [10, 9, 2, 5, 3,原创 2016-04-17 06:43:52 · 2552 阅读 · 0 评论 -
LeetCode 84. Largest Rectangle in Histogram(最大矩形)
原题网址:https://leetcode.com/problems/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原创 2016-05-23 00:34:09 · 481 阅读 · 0 评论 -
456. 132 Pattern
原题网址:https://leetcode.com/problems/132-pattern/ Given a sequence of n integers a1, a2, ..., an, a 132 pattern is a subsequence ai, aj, ak such that i j k and ai < ak j. Design an algori原创 2016-11-30 04:37:54 · 1629 阅读 · 1 评论