Problem Description
Given an integer array nums
, you need to find one continuous subarray such that if you only sort this subarray in non-decreasing order, then the whole array will be sorted in non-decreasing order. Return the length of the shortest such subarray.
Key Insights
- Identify the first and last indices where the order of the array is violated.
- Elements outside this range need to be considered for sorting to ensure the entire array becomes sorted.
- Use a two-pointer approach to find the boundaries of the unsorted subarray.
- The solution should be efficient, ideally O(n) time complexity.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve this problem, we can use a two-pointer technique along with a stack. We will find the first and last indices where the array is not sorted. By tracking the minimum and maximum values within that unsorted range, we can determine if any elements outside this range need to be included in the sorting process.
- Traverse the array from the beginning to find the first index where the order is violated.
- Traverse the array from the end to find the last index where the order is violated.
- Determine the minimum and maximum values in the identified subarray.
- Expand the boundaries if there are elements outside the identified range that are greater than the minimum or less than the maximum of the identified subarray.
This approach ensures we can find the length of the shortest unsorted continuous subarray efficiently.