Javatpoint Logo
Javatpoint Logo

Different Methods of Array Rotation in Python

In this tutorial, we will learn how we can rotate the array using the Python program. We will write a function for rotation (arry[], E, K) which will be used for rotating arry[] of size K = 8 by E = 4 elements.

Different Methods of Array Rotation in Python

We will get the following the array after rotating array by 4 elements:

Different Methods of Array Rotation in Python

Methods for Array Rotation:

In this session, we will discuss different methods users can use for rotation the array according to their requirements.

Method 1: By using temp array

In this method, we will use the following approach:

Step 1: We will store "E" elements in a temp array

Temp[] = [1, 3, 5, 7]

Step 2: we will shift the rest of the arry[]

arry[] = [9, 11, 13, 15]

Step 3: We will store the "E" elements

arry[] = [9, 11, 13, 15, 1, 3, 5, 7]

Example:

Output:

Array after Rotation by 4 elements is: [9, 11, 13, 15, 1, 3, 5, 7]

In the above method:

Method 2: By rotation elements one by one

In this method, we will use the following approach:

rotate_array1(arry[], E, K)

  • we will put the "for" condition that if J is equal to 0 and less than E, then the rotate_array1 function will rotate all elements by one

We have to store arry[0] for rotating elements by one in a temporary variable, "temp_1". Then we will more arry[1] to arry[0], arry[2] to arry[1] and so on. At last, we will have temp_1 on arry[n-1].

Example:

Output:

The array after rotation: 
1 3 5 7 9 11 13 15

In the above method:

Method 3: By using a Juggling Algorithm

In this method, we will be dividing the array into different sets instead of moving elements one by one.

When the number of sets is equal to the greatest common divider of "K" and "E", the code will mode the elements into the sets.

If the greatest common divider is equal to 1, then the elements will move into one set only. Here, we will start with temp_1 = arry[0], and it will keep moving arry[J + E] to arry[J], and at last, it will store the temp_1 at the right place.

Let's see an example in which, K = 16 and E = 4. Greatest Common Divider (G_C_D) = 4

Steps -

  • At first, the elements will be moved into the first set - as shown in the following diagram:
    Different Methods of Array Rotation in Python

After completion of this set, arry[] will be equal to [15, 12, 13, 14, 19, 16, 17, 18, 23, 20, 21, 22, 11, 23, 24, 25, 26]

  • Then in second set: arry will be [15, 16, 13, 14, 19, 20, 17, 18, 23, 24, 21, 22, 11, 12, 24, 25, 26]
  • In the third set: arry will be [15, 16, 17, 14, 19, 20, 21, 18, 23, 24, 25, 11, 12, 13, 26]
  • Finally, in the fourth set: arry will be [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 11, 12, 13, 14]

Example:

Output:

The array after rotation:
[15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 11, 12, 13, 14]

In the above method:

Method 4: By using List Slicing

In this method, we will use list slicing for rotating the elements of an array.

Example:

Output:

The List is: [11, 12, 13, 14, 15, 16, 17, 18]
The rotated list is: 
[15, 16, 17, 18, 11, 12, 13, 14]

If we want to rotate the array by more than its length, we can use the mod method.

Suppose the array that we want to rotate by "E" is of "K" size and "E" is greater than "K". In this case, we have to calculate (E%K) and then we can rotate by the output after mod calculation.

Conclusion

In this article, we have discussed how we can use different methods for rotating the given array by using Python.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA