Programa de Python 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.

Python

# Python program to check if strings are rotations of
# each other or not
 
# Function checks if passed strings (str1 and str2)
# are rotations of each other
def areRotations(string1, string2):
    size1 = len(string1)
    size2 = len(string2)
    temp = ''
 
    # Check if sizes of two strings are same
    if size1 != size2:
        return 0
 
    # Create a temp string with value str1.str1
    temp = string1 + string1
 
    # Now check if str2 is a substring of temp
    # string.count returns the number of occurrences of
    # the second string in temp
    if (temp.count(string2)> 0):
        return 1
    else:
        return 0
 
# Driver program to test the above function
string1 = "AACD"
string2 = "ACDA"
 
if areRotations(string1, string2):
    print "Strings are rotations of each other"
else:
    print "Strings are not rotations of each other"
 
# This code is contributed by Bhavya Jain

Producción:

Strings are rotations of each other

Complejidad de tiempo : O(n)

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 *