Problem Description
Given an integer array arr
, return the length of a maximum size turbulent subarray of arr
. A subarray is turbulent if the comparison sign flips between each adjacent pair of elements in the subarray.
Key Insights
- A turbulent subarray alternates between increasing and decreasing elements.
- We can keep track of the length of the current turbulent subarray while iterating through the array.
- If two adjacent elements are equal, the turbulent subarray ends.
- We can determine the turbulence by comparing the signs of differences between adjacent elements.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we will use a single pass through the array while maintaining a count of the current turbulent subarray length. We will compare adjacent elements to check if the current element is greater or less than the next one. We will update our maximum length whenever we find a valid turbulent condition. If we encounter equal elements, we reset our count.