Programa Php 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.

PHP

<?php
// Php program to check if
// two given strings are
// rotations of each other
 
/* Function checks if passed
strings (str1 and str2) are
rotations of each other */
function areRotations($str1, $str2)
{
/* Check if sizes of two
   strings are same */
if (strlen($str1) != strlen($str2))
{
        return false;
}
 
$temp = $str1 + $str1;
if ($temp.count($str2)> 0)
{
        return true;
}
else
{
    return false;
}
}
 
// Driver code
$str1 = "AACD";
$str2 = "ACDA";
if (areRotations($str1, $str2))
{
    echo "Strings are rotations ".
                  "of each other";
}
else
{
    echo "Strings are not " .
         "rotations of each other" ;
}
 
// This code is contributed
// by Shivi_Aggarwal.
?>

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 *