Programa Java para verificar si dos strings son anagramas entre sí

Escriba una función para verificar si dos strings dadas son anagramas entre sí o no. Un anagrama de una string es otra string que contiene los mismos caracteres, solo el orden de los caracteres puede ser diferente. Por ejemplo, «abcd» y «dabc» son un anagrama el uno del otro.

check-whether-two-strings-are-anagram-of-each-other

Le recomendamos encarecidamente que haga clic aquí y lo practique antes de pasar a la solución.

Método 1 (Uso de clasificación):

  1. Ordenar ambas strings
  2. Comparar las strings ordenadas

A continuación se muestra la implementación de la idea anterior:

Java

// Java program to check whether two strings
// are anagrams of each other
import java.io.*;
import java.util.Arrays;
import java.util.Collections;
class GFG
{
    /* Function to check whether two strings
       are anagram of each other */
    static boolean areAnagram(char[] str1,
                              char[] str2)
    {
        // Get lengths of both strings
        int n1 = str1.length;
        int n2 = str2.length;
 
        // If length of both strings is not
        // same, then they cannot be anagram
        if (n1 != n2)
            return false;
 
        // Sort both strings
        Arrays.sort(str1);
        Arrays.sort(str2);
 
        // Compare sorted strings
        for (int i = 0; i < n1; i++)
            if (str1[i] != str2[i])
                return false;
 
        return true;
    }
 
    // Driver Code
    public static void main(String args[])
    {
        char str1[] = {'t', 'e', 's', 't'};
        char str2[] = {'t', 't', 'e', 'w'};
       
        // Function Call
        if (areAnagram(str1, str2))
            System.out.println(
            "The two strings are" +
            " anagram of each other");
        else
            System.out.println(
            "The two strings are not" +
            " anagram of each other");
    }
}
// This code is contributed by Nikita Tiwari.

 Producción:

The two strings are not anagram of each other

Complejidad de tiempo: O (nLogn)

Espacio auxiliar: O(1). 

Método 2 (Contar caracteres): 
este método asume que el conjunto de posibles caracteres en ambas strings es pequeño. En la siguiente implementación, se supone que los caracteres se almacenan utilizando 8 bits y puede haber 256 caracteres posibles. 

  1. Cree arrays de conteo de tamaño 256 para ambas strings. Inicialice todos los valores en arrays de conteo como 0.
  2. Repita cada carácter de ambas strings e incremente el recuento de caracteres en las arrays de recuento correspondientes.
  3. Compara arrays de conteo. Si ambas arrays de conteo son iguales, devuelva verdadero.

A continuación se muestra la implementación de la idea anterior:

Java

// Java program to check if two strings
// are anagrams of each other
import java.io.*;
import java.util.*;
class GFG
{
    static int NO_OF_CHARS = 256;
 
    /* Function to check whether two strings
       are anagram of each other */
    static boolean areAnagram(char str1[],
                              char str2[])
    {
        // Create 2 count arrays and initialize
        // all values as 0
        int count1[] = new int[NO_OF_CHARS];
        Arrays.fill(count1, 0);
        int count2[] = new int[NO_OF_CHARS];
        Arrays.fill(count2, 0);
        int i;
 
        // For each character in input strings,
        // increment count in the corresponding
        // count array
        for (i = 0; i < str1.length &&
             i < str2.length; i++)
        {
            count1[str1[i]]++;
            count2[str2[i]]++;
        }
 
        // If both strings are of different length.
        // Removing this condition will make the
        // program fail for strings like "aaca"
        // and "aca"
        if (str1.length != str2.length)
            return false;
 
        // Compare count arrays
        for (i = 0; i < NO_OF_CHARS; i++)
            if (count1[i] != count2[i])
                return false;
 
        return true;
    }
 
    // Driver code
    public static void main(String args[])
    {
        char str1[] =
        ("geeksforgeeks").toCharArray();
        char str2[] =
        ("forgeeksgeeks").toCharArray();
 
        // Function call
        if (areAnagram(str1, str2))
            System.out.println(
            "The two strings are" +
            "anagram of each other");
        else
            System.out.println(
            "The two strings are not" +
            " anagram of each other");
    }
}
// This code is contributed by Nikita Tiwari.

 Producción:

The two strings are anagram of each other

Complejidad de tiempo: O(n)

Espacio auxiliar: O(n). 

Método 3 (contar caracteres usando una array): 
la implementación anterior puede ser más avanzada para usar solo una array de conteo en lugar de dos. Podemos incrementar el valor en la array de conteo para caracteres en str1 y disminuir para caracteres en str2. Finalmente, si todos los valores de conteo son 0, entonces las dos strings son anagramas entre sí. Gracias a Ace por sugerir esta optimización. 

Java

// Java program to check if two strings
// are anagrams of each other
class GFG{
 
static int NO_OF_CHARS = 256;
 
// Function to check if two strings
// are anagrams of each other
static boolean areAnagram(char[] str1,
                          char[] str2)
{  
    // Create a count array and initialize
    // all values as 0
    int[] count = new int[NO_OF_CHARS];
    int i;
 
    // For each character in input strings,
    // increment count in the corresponding
    // count array
    for(i = 0; i < str1.length; i++)
    {
        count[str1[i] - 'a']++;
        count[str2[i] - 'a']--;
    }
 
    // If both strings are of different
    // length. Removing this condition
    // will make the program fail for
    // strings like "aaca" and "aca"
    if (str1.length != str2.length)
        return false;
 
    // See if there is any non-zero
    // value in count array
    for(i = 0; i < NO_OF_CHARS; i++)
        if (count[i] != 0)
        {
            return false;
        }
    return true;
}
 
// Driver code
public static void main(String[] args)
{
    char str1[] =
    "geeksforgeeks".toCharArray();
    char str2[] =
    "forgeeksgeeks".toCharArray();
 
    // Function call
    if (areAnagram(str1, str2))
        System.out.print(
        "The two strings are " +
        "anagram of each other");
    else
        System.out.print(
        "The two strings are " +
        "not anagram of each other");
}
}
// This code is contributed by mark_85

Producción:

The two strings are anagram of each other

Complejidad de tiempo: O(n)

Espacio auxiliar: O(n). 

Método 4 (usando HashMap()):

Podemos optimizar la complejidad del espacio del método anterior usando HashMap en lugar de inicializar una array de 256 caracteres. Entonces, en este enfoque, primero contaremos las ocurrencias de cada carácter único con la ayuda de HashMap para la primera string. Luego, reduciremos el recuento de cada carácter mientras los encontramos en la segunda string. Finalmente, si el recuento de cada carácter en el mapa hash es 0, significa que ambas strings son anagramas, de lo contrario no lo son.

A continuación se muestra el código para el enfoque anterior.

Java

// Java program to check if two
// strings are anagrams of each other
 
import java.io.*;
import java.util.*;
 
class GFG {
    public static boolean areAnagram(String a, String b)
    {
        // Check if both string has same length or not
        if (a.length() != b.length()) {
            return false;
        }
         
        // Creating a HashMap containing Character as Key and
        // Integer as Value. We will be storing character as
        // Key and count of character as Value.
        HashMap<Character, Integer> map = new HashMap<>();
         
        // Loop over all character of first string and put in
        // HashMap.
        for (int i = 0; i < a.length(); i++) {
            // Check if HashMap already contain the current
            // character or not
            if (map.containsKey(a.charAt(i))) {
                // If contains then increase count by 1
                map.put(a.charAt(i),
                        map.get(a.charAt(i)) + 1);
            }
            else {
                // else put that character in map and set
                // count to 1 as character is encountered
                // first time
                map.put(a.charAt(i), 1);
            }
        }
         
        // Now loop over String b
        for (int i = 0; i < b.length(); i++) {
            // Check if HashMap already contain the current
            // character or not
            if (map.containsKey(b.charAt(i))) {
                // If contains reduce count of that
                // character by 1 to indicate that current
                // character has been already counted as
                // idea here is to check if in last count of
                // all characters in last is zero which
                // means all characters in String a are
                // present in String b.
                map.put(b.charAt(i),
                        map.get(b.charAt(i)) - 1);
            }
        }
        // Extract all keys of HashMap/map
        Set<Character> keys = map.keySet();
        // Loop over all keys and check if all keys are 0
        // as it means that all the characters are present
        // in equal count in both strings.
        for (Character key : keys) {
            if (map.get(key) != 0) {
                return false;
            }
        }
        // Returning True as all keys are zero
        return true;
    }
    public static void main(String[] args)
    {
        String str1 = "geeksforgeeks";
        String str2 = "forgeeksgeeks";
 
        // Function call
        if (areAnagram(str1, str2))
            System.out.print("The two strings are "
                            + "anagram of each other");
        else
            System.out.print("The two strings are "
                            + "not anagram of each other");
    }
}
 
// This code is contributed by Pushpesh Raj
Producción

The two strings are anagram of each other

Complejidad de tiempo: O(n)

Sugiera si alguien tiene una mejor solución que sea más eficiente en términos de espacio y tiempo.
Este artículo es una contribución de Aarti_Rathi . Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Consulte el artículo completo sobre Comprobar si dos strings son anagramas entre sí 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 *