Open In App

Javascript Program for Shortest Un-ordered Subarray

Last Updated : 26 May, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

An array is given of n length, and problem is that we have to find the length of shortest unordered {neither increasing nor decreasing} sub array in given array.
Examples: 
 

Input : n = 5
        7 9 10 8 11
Output : 3
Explanation : 9 10 8 unordered sub array.

Input : n = 5
       1 2 3 4 5
Output : 0 
Explanation :  Array is in increasing order.

 

The idea is based on the fact that size of shortest subarray would be either 0 or 3. We have to check array element is either increasing or decreasing, if all array elements are in increasing or decreasing, then length of shortest sub array is 0, And if either the array element is not follow the increasing or decreasing then it shortest length is 3.
 

Javascript




<script>
 
// JavaScript program to find shortest subarray which is
// unsorted.
 
    // boolean function to check array elements
    // are in increasing order or not
    function increasing(a, n)
    {
        for (let i = 0; i < n - 1; i++)
            if (a[i] >= a[i + 1])
                return false;
                   
        return true;
    }
       
    // boolean function to check array elements
    // are in decreasing order or not
    function decreasing(arr, n)
    {
        for (let i = 0; i < n - 1; i++)
            if (arr[i] < arr[i + 1])
                return false;
                   
        return true;
    }
       
    function shortestUnsorted(a, n)
    {
           
        // increasing and decreasing are two functions.
        // if function return true value then print
        // 0 otherwise 3.
        if (increasing(a, n) == true ||
                             decreasing(a, n) == true)
            return 0;
        else
            return 3;
    }
 
// Driver Code
 
        let ar = [7, 9, 10, 8, 11];
        let n = ar.length;
           
        document.write(shortestUnsorted(ar,n));
          
         // This code is contributed by chinmoy1997pal.
</script>


Output : 

3

 

Time complexity: O(n) where n is the length of the array.

Auxiliary Space: O(1)

Please refer complete article on Shortest Un-ordered Subarray for more details!



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads