209. Minimum Size Subarray Sum
problem description
Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn't one, return 0 instead.
Example:
algorithm thought
这里求出连续子数组之和大于s的最小值。有两种方法,题目中follow up也提出,有O(n)和O(nlgn)的办法。
首先说下O(nlgn),这种形式的时间复杂度一般是分治法,类似的有归并排序。对于这题,连续数组要不就是包含中间那个值,或者是在左半数组中或者是在右半数组中。所以首先处理连续数组在中间的情况,从中间开始左右扩展,然后左边右边递归处理即可。最后得到最大的
然后是O(n)的解法,这里还是使用快慢指针,快的先加,如果超过了s,慢指针再往前,慢指针只需要减,直到小于s。直到快指针超过数组长度即可结束,中间每次比较得到最小值
code
algorithm analysis
thought中已经分析了时间复杂度,这里就不多说了
Previous[208. Implement Trie (Prefix Tree)](208.-Implement-Trie-(Prefix-Tree).md)Next211. Add and Search Word Data structure design
Last updated