581 Shortest Unsorted Continuous Subarray
Last updated
Was this helpful?
Last updated
Was this helpful?
Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be sorted in ascending order, too.
You need to find theshortestsuch subarray and output its length.
Example 1:
Note:
Then length of the input array is in range [1, 10,000].
The input array may contain duplicates, so ascending order here means <=.
(1) Monotone Stack
Monotone Stack: 时间复杂度O(n), 空间复杂度O(n)