📌  相关文章
📜  C ++程序计算以非递增顺序对给定数组进行排序所需的旋转

📅  最后修改于: 2022-05-13 01:55:19.907000             🧑  作者: Mango

C ++程序计算以非递增顺序对给定数组进行排序所需的旋转

给定一个由N个整数组成的数组arr[] ,任务是通过最小逆时针旋转次数以非递增顺序对数组进行排序。如果无法对数组进行排序,则打印“-1” 。否则,打印旋转计数。

例子:

方法:想法是遍历给定数组arr[]并计算满足arr[i + 1] > arr[i]的索引数。请按照以下步骤解决问题:

  • arr[i + 1] > arr[i]的计数存储在变量中,并在arr[i+1] > arr[i]时存储索引。
  • 如果count的值为N – 1 ,则数组按非递减顺序排序。所需的步骤正是(N – 1)
  • 如果count的值为0 ,则数组已经按非递增顺序排序。
  • 如果count的值为1并且arr[0] ≤ arr[N – 1] ,则所需的旋转次数等于(index + 1) ,方法是将所有数字移动到该索引。此外,检查arr[0] ≤ arr[N – 1]以确保序列是否不递增。
  • 否则,无法按非递增顺序对数组进行排序。

下面是上述方法的实现:

C++
// C++ program for the above approach
  
#include 
using namespace std;
  
// Function to count minimum anti-
// clockwise rotations required to
// sort the array in non-increasing order
void minMovesToSort(int arr[], int N)
{
    // Stores count of arr[i + 1] > arr[i]
    int count = 0;
  
    // Store last index of arr[i+1] > arr[i]
    int index;
  
    // Traverse the given array
    for (int i = 0; i < N - 1; i++) {
  
        // If the adjacent elements are
        // in increasing order
        if (arr[i] < arr[i + 1]) {
  
            // Increment count
            count++;
  
            // Update index
            index = i;
        }
    }
  
    // Print the result according
    // to the following conditions
    if (count == 0) {
        cout << "0";
    }
    else if (count == N - 1) {
        cout << N - 1;
    }
    else if (count == 1
             && arr[0] <= arr[N - 1]) {
        cout << index + 1;
    }
  
    // Otherwise, it is not
    // possible to sort the array
    else {
        cout << "-1";
    }
}
  
// Driver Code
int main()
{
    // Given array
    int arr[] = { 2, 1, 5, 4, 2 };
    int N = sizeof(arr)
            / sizeof(arr[0]);
  
    // Function Call
    minMovesToSort(arr, N);
  
    return 0;
}


输出:
2

时间复杂度: O(N)
辅助空间: O(1)

有关更多详细信息,请参阅有关以非递增顺序对给定数组进行排序所需的计数旋转的完整文章!