Open In App

Javascript Program To Check Whether Two Strings Are Anagram Of Each Other

Last Updated : 27 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

Write a function to check whether two given strings are anagram of each other or not. An anagram of a string is another string that contains the same characters, only the order of characters can be different. For example, “abcd” and “dabc” are an anagram of each other.

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

We strongly recommend that you click here and practice it, before moving on to the solution.

Method 1 (Use Sorting):

  1. Sort both strings
  2. Compare the sorted strings

Below is the implementation of the above idea:

Javascript




<script>
// JavaScript program to check whether
// two strings are anagrams of each other
 
// Function to check whether two strings
// are anagram of each other
function areAnagram(str1,str2)
{
    // Get lengths of both strings
    let n1 = str1.length;
    let n2 = str2.length;
   
    // If length of both strings is not
    // same, then they cannot be anagram
    if (n1 != n2)
        return false;
   
    // Sort both strings
    str1.sort();
    str2.sort()
   
    // Compare sorted strings
    for (let i = 0; i < n1; i++)
        if (str1[i] != str2[i])
            return false;
   
    return true;
}
     
// Driver Code
let str1=['t', 'e', 's', 't'];
let str2=['t', 't', 'e', 'w'];
     
// Function Call
if (areAnagram(str1, str2))
    document.write(
    "The two strings are" +
    " anagram of each other<br>");
else
    document.write(
    "The two strings are not" +
    " anagram of each other<br>");
// This code is contributed by rag2127
</script>


Output:

The two strings are not anagram of each other

Time Complexity: O(nLogn)

Auxiliary space: O(1). 

Method 2 (Count characters): 
This method assumes that the set of possible characters in both strings is small. In the following implementation, it is assumed that the characters are stored using 8 bit and there can be 256 possible characters. 

  1. Create count arrays of size 256 for both strings. Initialize all values in count arrays as 0.
  2. Iterate through every character of both strings and increment the count of character in the corresponding count arrays.
  3. Compare count arrays. If both count arrays are same, then return true.

Below is the implementation of the above idea:

Javascript




<script>
// Javascript program to check if two
// strings are anagrams of each other
let NO_OF_CHARS = 256;
 
/* Function to check whether two strings
   are anagram of each other */
function areAnagram(str1, str2)
{
    // Create 2 count arrays and initialize
    // all values as 0
    let count1 = new Array(NO_OF_CHARS);
    let count2 = new Array(NO_OF_CHARS);
    for(let i = 0; i < NO_OF_CHARS; i++)
    {
        count1[i] = 0;
        count2[i] = 0;
    }
         
    let 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].charCodeAt(0)]++;
        count2[str2[i].charCodeAt(0)]++;
    }
  
    // 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
let str1 =
("geeksforgeeks").split("");
let str2 =
("forgeeksgeeks").split("");
  
// Function call
if (areAnagram(str1, str2))
    document.write(
    "The two strings are" +
    "anagram of each other<br>");
else
    document.write(
    "The two strings are not" +
    " anagram of each other<br>");
// This code is contributed by avanitrachhadiya2155
</script>


Output:

The two strings are anagram of each other

Time Complexity: O(n)

Auxiliary space: O(n). 

Method 3 (count characters using one array): 
The above implementation can be further to use only one count array instead of two. We can increment the value in count array for characters in str1 and decrement for characters in str2. Finally, if all count values are 0, then the two strings are anagram of each other. Thanks to Ace for suggesting this optimization.

Javascript




<script>
// Javascript program to check if two strings
// are anagrams of each other
let NO_OF_CHARS = 256;
 
// Function to check if two strings
// are anagrams of each other
function areAnagram(str1, str2)
{
    // Create a count array and initialize
    // all values as 0
    let count = new Array(NO_OF_CHARS);
    for(let i = 0; i < NO_OF_CHARS; i++)
    {
        count[i] = 0;
    }
    let i;
  
    // For each character in input strings,
    // increment count in the corresponding
    // count array
    for(i = 0; i < str1.length; i++)
    {
        count[str1[i].charCodeAt(0) -
              'a'.charCodeAt(0)]++;
        count[str2[i].charCodeAt(0) -
              'a'.charCodeAt(0)]--;
    }
  
    // 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
let str1 =
"geeksforgeeks".split("");
let str2 =
"forgeeksgeeks".split("");
 
// Function call
if (areAnagram(str1, str2))
    document.write(
    "The two strings are " +
    "anagram of each other");
else
    document.write(
    "The two strings are " +
    "not anagram of each other");
// This code is contributed by unknown2108.
</script>


Output:

The two strings are anagram of each other

Time Complexity: O(n)

Auxiliary space: O(n). 

Method 4 (Using Map()):

We can optimize the space complexity of the above method by using HashMap instead of initializing 256 characters array. So in this approach, we will first count the occurrence of each unique character with the help of HashMap for the first string. Then we will reduce the count of each character while we encounter them in the second string. Finally, if the count of each character in the hash map is 0 then it means both strings are anagrams else not.

Below is the code for the above approach.

Javascript




<script>
// Javascript program to check if two
// strings are anagrams of each other
 
function isAnagram(a, 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.
        let map = new Map();
        // Loop over all character of first string and put in
        // HashMap.
        for (let i = 0; i < a.length; i++) {
            // Check if HashMap already contain the current
            // character or not
            if (map.has(a[i])) {
                // If contains then increase count by 1
                map.set(a[i],
                        map.get(a[i]) + 1);
            }
            else {
                // else set that character in map and set
                // count to 1 as character is encountered
                // first time
                map.set(a[i], 1);
            }
        }
        // Now similarly iterating for second string
        for (let i = 0; i < b.length; i++) {
            // Check if HashMap already contain the current
            // character or not
            if (map.has(b[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.set(b[i],map.get(b[i]) - 1);
            }
        }
        // Extract all keys of HashMap/map
        let keys = map.keys();
        // 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 (let key of keys) {
            if (map.get(key) != 0) {
                return false;
            }
        }
        // Returning True as all keys are zero
        return true;
    }
 
// Driver code
let str1 = "geeksforgeeks";
let str2 = "forgeeksgeeks";
 
// Function call
if (isAnagram(str1, str2))
    document.write("The two strings are" +
    " anagram of each other<br>");
else
    document.write("The two strings are not" +
    " anagram of each other<br>");
 
 
// This code is contributed by Pushpesh Raj
 
</script>


Time Complexity: O(n)

Auxiliary space: O(n) because it is using HashMap

Please suggest if someone has a better solution which is more efficient in terms of space and time.

Please refer complete article on Check whether two strings are anagram of each other for more details!
 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads