581 Shortest Unsorted Continuous Subarray
1. Question
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 <=.
2. Implementation
(1) Monotone Stack
3. Time & Space Complexity
Monotone Stack: 时间复杂度O(n), 空间复杂度O(n)
Last updated