Open In App

Php 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.
 

PHP




<?php
// php program to find shortest
// subarray which is unsorted.
 
// bool function for checking an
// array elements are in increasing.
function increasing($a, $n)
{
    for ( $i = 0; $i < $n - 1; $i++)
        if ($a[$i] >= $a[$i + 1])
            return false;
             
    return true;
}
 
// bool function for checking an
// array elements are in decreasing.
function decreasing($a, $n)
{
    for ($i = 0; $i < $n - 1; $i++)
        if ($a[$i] < $a[$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
$ar = array( 7, 9, 10, 8, 11 );
$n = sizeof($ar);
echo shortestUnsorted($ar, $n);
 
// This code is contributed by
// nitin mittal.
?>


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
Share your thoughts in the comments

Similar Reads