Escriba código para encontrar el mínimo lexicográfico en una array circular, por ejemplo, para la array BCABDADAB, el mínimo lexicográfico es ABBCABDAD.
Fuente: prueba escrita de Google
Más ejemplos:
Input: GEEKSQUIZ Output: EEKSQUIZG Input: GFG Output: FGG Input: GEEKSFORGEEKS Output: EEKSFORGEEKSG
La siguiente es una solución simple. Deje que la string dada sea ‘str’
1) Concatene ‘str’ consigo mismo y guárdelo en una string temporal, diga ‘concat’.
2) Cree una array de strings para almacenar todas las rotaciones de ‘str’. Deje que la array sea ‘arr’.
3) Encuentre todas las rotaciones de ‘str’ tomando substrings de ‘concat’ en el índice 0, 1, 2..n-1. Guarde estas rotaciones en arr[]
4) Ordene arr[] y devuelva arr[0].
A continuación se muestra la implementación de la solución anterior.
Javascript
<script> // A simple Javascript program to find // lexicographically minimum rotation // of a given String // This functionr return lexicographically // minimum rotation of str function minLexRotation(str) { // Find length of given String let n = str.length; // Create an array of strings // to store all rotations let arr = new Array(n); // Create a concatenation of // String with itself let concat = str + str; // One by one store all rotations // of str in array. A rotation is // obtained by getting a substring of concat for(let i = 0; i < n; i++) { arr[i] = concat.substring(i, i + n); } // Sort all rotations arr.sort(); // Return the first rotation // from the sorted array return arr[0]; } // Driver code document.write(minLexRotation("GEEKSFORGEEKS") + "</br>"); document.write(minLexRotation("GEEKSQUIZ") + "</br>"); document.write(minLexRotation("BCABDADAB") + "</br>"); // This code is contributed by divyeshrabadiya07 </script>
Producción:
EEKSFORGEEKSG EEKSQUIZG ABBCABDAD
La complejidad temporal de la solución anterior es O(n 2 Logn) bajo el supuesto de que hemos utilizado un algoritmo de clasificación O(nLogn).
Consulte el artículo completo sobre Rotación de strings mínima lexicográficamente | ¡ Establezca 1 para más detalles!
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