Programa C# para verificar si las strings son rotaciones entre sí o no

Dada una string s1 y una string s2, escribe un fragmento para decir si s2 es una rotación de s1. (por ejemplo, dado s1 = ABCD y s2 = CDAB, devuelve verdadero, dado s1 = ABCD y s2 = ACBD, devuelve falso) Algoritmo: areRotations(str1, str2)

    1. Create a temp string and store concatenation of str1 to
       str1 in temp.
                          temp = str1.str1
    2. If str2 is a substring of temp then str1 and str2 are 
       rotations of each other.

    Example:                 
                     str1 = "ABACD"
                     str2 = "CDABA"

     temp = str1.str1 = "ABACDABACD"
     Since str2 is a substring of temp, str1 and str2 are 
     rotations of each other.

C#

// C# program to check if two given strings
// are rotations of each other
using System;
 
class GFG {
     
    /* Function checks if passed strings
    (str1 and str2) are rotations of
    each other */
    static bool areRotations(String str1,
                                 String str2)
    {
         
        // There lengths must be same and
        // str2 must be a substring of
        // str1 concatenated with str1.
        return (str1.Length == str2.Length )
             && ((str1 + str1).IndexOf(str2)
                                     != -1);
    }
     
    // Driver method
    public static void Main ()
    {
        String str1 = "FGABCDE";
        String str2 = "ABCDEFG";
 
        if (areRotations(str1, str2))
            Console.Write("Strings are"
            + " rotation s of each other");
        else
            Console.Write("Strings are "
           + "not rotations of each other");
    }
}
 
// This code is contributed by nitin mittal.

Producción:

Strings are rotations of each other

Complejidad de tiempo: O(n*n), donde n es la longitud de la string.
Espacio Auxiliar: O(n)

Funciones de biblioteca utilizadas: strstr: strstr encuentra una substring dentro de una string. Prototipo: char * strstr(const char *s1, const char *s2); Ver http://www.lix.polytechnique.fr/Labo/Leo.Liberti/public/computing/prog/c/C/MAN/strstr.htm para más detalles strcat: strncat concatena dos strings Prototipo: char *strcat(char *destino, const char *origen); Ver http://www.lix.polytechnique.fr/Labo/Leo.Liberti/public/computing/prog/c/C/MAN/strcat.htm para más detalles Complejidad del tiempo:La complejidad temporal de este problema depende de la implementación de la función strstr. Si la implementación de strstr se realiza mediante el comparador KMP, la complejidad del programa anterior es (-)(n1 + n2), donde n1 y n2 son longitudes de strings. El comparador KMP tarda (-)(n) tiempo en encontrar una substring en una string de longitud n donde se supone que la longitud de la substring es menor que la string. ¡ Consulte el artículo completo sobre un programa para verificar si las strings son rotaciones entre sí o no para obtener 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *