HomeC ProgrammingC Program to Cyclically Permute the Elements of an Array

C Program to Cyclically Permute the Elements of an Array

This C program performs cyclic permutation (rotation) of the elements in an array to the right. Cyclic permutation is an operation that moves the elements of the array in a circular fashion, where the last element becomes the first element after the rotation.

In computer programming, cyclically permuting the elements of an array involves shifting each element one position to the right, with the last element moving to the first position. This rearrangement creates a new permutation of the array while maintaining the order of the elements.

Program Statement

Write a Program in C to cyclically permute the elements of an array.

C Program to Cyclically Permute the Elements of an Array

#include <stdio.h>

void cyclicallyPermute(int arr[], int size) {
    int temp = arr[size-1];  // Store the last element

    // Shift elements to the right
    for (int i = size-1; i > 0; i--) {
        arr[i] = arr[i-1];
    }

    arr[0] = temp;  // Move the last element to the first position
}

int main() {
    int arr[] = {1, 2, 3, 4, 5};
    int size = sizeof(arr) / sizeof(arr[0]);

    printf("Original array: ");
    for (int i = 0; i < size; i++) {
        printf("%d ", arr[i]);
    }

    cyclicallyPermute(arr, size);

    printf("\nCyclically permuted array: ");
    for (int i = 0; i < size; i++) {
        printf("%d ", arr[i]);
    }

    return 0;
}

How it works

Here’s how the program works:

  1. The program starts and includes the necessary header file, stdio.h, for input/output operations.
  2. The cyclicallyPermute function is defined. It takes an array arr and its size n as input.
  3. Within the cyclicallyPermute function, a temporary variable temp is declared to store the last element of the array.
  4. A for loop is used to iterate through the array in reverse order, starting from the second-to-last element (n-1) and moving towards the first element (0).
  5. Inside the loop, each element is shifted one position to the right by assigning the value of the previous element to the current element (arr[i] = arr[i - 1]).
  6. After the loop, the stored last element is placed in the first position of the array (arr[0] = temp).
  7. The displayArray function is defined to print the elements of an array. It takes an array arr and its size n as input.
  8. Inside the displayArray function, a for loop is used to iterate through the array elements. Each element is printed using printf, followed by a space.
  9. In the main function, an example array arr is created with some initial values.
  10. The size of the array n is calculated by dividing the total size of the array by the size of one element.
  11. The original array is displayed using the displayArray function.
  12. The cyclicallyPermute function is called, passing the array and its size as arguments, to perform the cyclic permutation.
  13. Finally, the cyclically permuted array is displayed using the displayArray function.
  14. The program ends, and the execution is complete.

When you run the program, it will output the original array and the cyclically permuted array, demonstrating the cyclic permutation of the array elements.

Input/Output

C Program to Cyclically Permute the Elements of an Array

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C program calculates the volume and surface area of a sphere using its radius. A sphere is a three-dimensional...
This C program converts a Roman numeral to a decimal number. Roman numerals are a system of numerical notation used...
This C program calculates the value of sin(x) using the Taylor series expansion. The Taylor series expansion is a mathematical...