
子序列
文章平均质量分 75
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 325. Maximum Size Subarray Sum Equals k(和为k的最长子数组)
原题网址:https://leetcode.com/problems/maximum-size-subarray-sum-equals-k/Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isn't one, return 0原创 2016-04-26 06:10:18 · 2463 阅读 · 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 3. Longest Substring Without Repeating Characters(最长不重复子串)
原题网址:https://leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repeating characters.Examples:Given "ab原创 2016-05-01 07:12:41 · 480 阅读 · 0 评论 -
LeetCode 53. Maximum Subarray(最大子数组)
原题网址:https://leetcode.com/problems/maximum-subarray/Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [−2,1原创 2016-05-21 06:53:56 · 1319 阅读 · 0 评论 -
LeetCode 376. Wiggle Subsequence(摇摆子序列)
原题网址:https://leetcode.com/problems/wiggle-subsequence/A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and nega原创 2016-07-22 06:18:49 · 1524 阅读 · 0 评论 -
HackerRank The Maximum Subarray
原题网址:https://www.hackerrank.com/challenges/maxsubarrayGiven an array of elements, find the maximum possible sum of aContiguous subarrayNon-contiguous (not necessarily contiguou原创 2016-07-22 06:56:23 · 903 阅读 · 0 评论