Open In App

Check if an Array is Sorted

Last Updated : 07 Mar, 2025
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

Given an array of size n, the task is to check if it is sorted in ascending order or not. Equal values are allowed in an array and two consecutive equal values are considered sorted.

Examples: 

Input: arr[] = [20, 21, 45, 89, 89, 90]
Output: Yes

Input: arr[] = [20, 20, 45, 89, 89, 90]
Output: Yes

Input: arr[] = [20, 20, 78, 98, 99, 97]
Output: No

Iterative approach – O(n) Time and O(1) Space

The idea is simple. We start traversing from the second element. For every element we check if it is smaller than or equal to previous element or not. At any point if we find previous element greater, we return false.

For example [10, 20, 30, 5, 6[

i = 1 : (10 <= 20), continue
i = 2 : (20 <= 30), continue
i = 3 : (30 > 5), return false.

C++
#include <bits/stdc++.h>
using namespace std;

// Function that returns true if vector is
// sorted in non-decreasing order.
bool isSorted(const vector<int>& arr)
{
    // For an array to be sorted, every
    // element must be greater than the 
    // previous element
    for (int i = 1; i < arr.size(); i++)
        if (arr[i - 1] > arr[i])
            return false;

    return true;
}

// Driver code
int main()
{
    vector<int> arr = { 20, 23, 23, 45, 78, 88 };
    cout << (isSorted(arr) ? "Yes\n" : "No\n");
    return 0;
}
    cout << (isSorted(arr) ? "Yes\n" : "No\n");
    return 0;

}
C Java Python C# JavaScript

Output
Yes

Recursive approach – O(n) Time and O(n) Space

The basic idea for the recursive approach:  

  • If size of array is zero or one, return true.
  • Check last two elements of array, if they are sorted, perform a recursive call with n-1 else, return false.
C++
#include <iostream>
#include <vector>
using namespace std;

// Recursive function that returns true if vector is
// sorted in non-decreasing order.
bool isSorted(const vector<int>& arr, int n)
{
    // Base case
    if (n == 1 || n == 0)
        return true;

    // Check if current and previous elements are in order
    // and recursively check the rest of the array
    return arr[n - 1] >= arr[n - 2] && isSorted(arr, n - 1);
}

// Driver code
int main()
{
    vector<int> arr = { 20, 23, 23, 45, 78, 88 };
    cout << (isSorted(arr, arr.size()) ? "Yes\n" : "No\n");
    return 0;
}
C Java Python C# JavaScript

Output
Yes

Time Complexity: O(n) 
Auxiliary Space: O(n) for Recursion Call Stack.



Next Article
Article Tags :
Practice Tags :

Similar Reads

three90RightbarBannerImg