Escribe una función rotar(ar[], d, n) que gire arr[] de tamaño n por d elementos.
La rotación de la array anterior por 2 hará que la array
METHOD 1 (Using temp array)
Input arr[] = [1, 2, 3, 4, 5, 6, 7], d = 2, n =7 1) Store d elements in a temp array temp[] = [1, 2] 2) Shift rest of the arr[] arr[] = [3, 4, 5, 6, 7, 6, 7] 3) Store back the d elements arr[] = [3, 4, 5, 6, 7, 1, 2]
Complejidad temporal : O(n)
Espacio auxiliar : O(d)
MÉTODO 2 (Rotar uno por uno)
leftRotate(arr[], d, n) start For i = 0 to i < d Left rotate all elements of arr[] by one end
Para rotar por uno, almacene arr[0] en una variable temporal temp, mueva arr[1] a arr[0], arr[2] a arr[1] …y finalmente temp a arr[n-1]
Tomemos el mismo ejemplo arr[] = [1, 2, 3, 4, 5, 6, 7], d = 2
Rotar arr[] por uno 2 veces
Obtenemos [2, 3, 4, 5, 6, 7, 1] después de la primera rotación y [ 3, 4, 5, 6, 7, 1, 2] después de la segunda rotación.
Java
class RotateArray { /*Function to left rotate arr[] of size n by d*/ void leftRotate(int arr[], int d, int n) { int i; for (i = 0; i < d; i++) leftRotatebyOne(arr, n); } void leftRotatebyOne(int arr[], int n) { int i, temp; temp = arr[0]; for (i = 0; i < n - 1; i++) arr[i] = arr[i + 1]; arr[i] = temp; } /* utility function to print an array */ void printArray(int arr[], int size) { int i; for (i = 0; i < size; i++) System.out.print(arr[i] + " "); } // Driver program to test above functions public static void main(String[] args) { RotateArray rotate = new RotateArray(); int arr[] = {1, 2, 3, 4, 5, 6, 7}; rotate.leftRotate(arr, 2, 7); rotate.printArray(arr, 7); } } // This code has been contributed by Mayank Jaiswal
Java
class RotateArray { /*Function to left rotate arr[] of size n by d*/ void leftRotate(int arr[], int d, int n) { int i, j, k, temp; for (i = 0; i < gcd(d, n); i++) { /* move i-th values of blocks */ temp = arr[i]; j = i; while (true) { k = j + d; if (k >= n) k = k - n; if (k == i) break; arr[j] = arr[k]; j = k; } arr[j] = temp; } } /*UTILITY FUNCTIONS*/ /* function to print an array */ void printArray(int arr[], int size) { int i; for (i = 0; i < size; i++) System.out.print(arr[i] + " "); } /*Function to get gcd of a and b*/ int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } // Driver program to test above functions public static void main(String[] args) { RotateArray rotate = new RotateArray(); int arr[] = {1, 2, 3, 4, 5, 6, 7}; rotate.leftRotate(arr, 2, 7); rotate.printArray(arr, 7); } } // This code has been contributed by Mayank Jaiswal
¿Escribir código en un comentario? Utilice ide.geeksforgeeks.org , genere un enlace y compártalo aquí.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA