Open In App

Circularly Sorted Array (Sorted and Rotated Array)

Last Updated : 16 Apr, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

Circularly sorted arrays are arrays that are sorted in ascending or descending order and then rotated by a number of steps.

Let us take an example to know more about circularly sorted arrays:

Consider an array: arr[] = {23, 34, 45, 12, 17, 19}
The elements here, {12, 17, 19, 23, 34, 45} are sorted ‘In-order’ but they are rotated to the left by 3 times.

Ascending circularly sorted array:

  • Consider an array sorted in ascending order: arr[] = {12, 17, 19, 23, 34, 45} 
  • If the above array is rotated by 3 steps to the left, then the resultant array will be ascending circularly sorted array: {23, 34, 45, 12, 17, 19}

Descending circularly sorted array:

  • Consider an array sorted in descending order: arr[] = {35, 26, 11, 9, 5, 3} 
  • If the above array is rotated by 3 steps to the left, then the resultant array will be descending circularly sorted array: {9, 5, 3, 35, 26, 11}

Let us check through the below problem whether the given array is circularly sorted or not:

Problem Statement:

Given an array arr[] of length N, the task is to check whether the given array is circularly sorted or not, we need to check whether the given array is the rotated form of the sorted array. 

  • In ascending circularly sorted array, there will be at most one case where the element just before the current element will be greater than the current element i.e., arr[ i – 1 ] > arr[ i ]. If there is no such case, then we consider the array as circularly sorted, this is the result of a rotation by N steps. On the other hand, if there is only one such case; we then make sure that the first element of the array is greater than the last one i.e., arr[0] > arr[N-1].
  •  So we need to count the total existence of arr[ i – 1 ] > arr[ i ] cases and if the count is 1 with arr[ 0 ] < arr[ N-1 ] or if the count is greater than 1 then the result will be false else the result will be true meaning that the array is circularly sorted.

Below is the implementation for the above approach: 

C++




// CPP program to check whether
// the array is circularly sorted
 
#include <bits/stdc++.h>
using namespace std;
 
// Function to check whether
// array is circularly sorted
bool checkCircularSorted(int arr[], int n)
{
 
    // cnt variable will store count of
    // arr[i-1] > arr[i]
    int cnt = 0;
 
    for (int i = 1; i < n; i++) {
 
        // increase cnt if arr[i-1] > arr[i]
        if (arr[i - 1] > arr[i]) {
            cnt++;
        }
    }
 
    // if cnt > 1 then false
    // else true
    if (cnt == 1) {
        // check first and last element.
        return arr[0] > arr[n-1];
    }
    else {
        return false;
    }
}
 
// Driver code
int main()
{
 
    // Given array
    int arr[] = { 23, 34, 45, 12, 17, 19 };
 
    // size of array
    int N = sizeof(arr) / sizeof(arr[0]);
 
    // Calling function to check
    // cirularly sorted array
    bool result = checkCircularSorted(arr, N);
 
    // Print result
    if (result) {
        cout << "Array is circularly sorted";
    }
    else {
        cout << "Array is not circularly sorted";
    }
}


Java

Python

C#

Javascript

Output

Array is circularly sorted

Time Complexity: O(n) 

Auxiliary Space: O(1)

Similarly, we can do the above operation for descending circularly sorted array. In this case we need to consider the count of the case where, arr [i-1] < arr[i]

Related articles:



Next Article
Article Tags :
Practice Tags :

Similar Reads