VOOZH about

URL: https://www.geeksforgeeks.org/dsa/java-program-to-check-whether-two-strings-are-anagram-of-each-other/

⇱ Java Program To Check Whether Two Strings Are Anagram - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Program To Check Whether Two Strings Are Anagram

Last Updated : 23 Jul, 2025

Write a function to check whether two given strings are anagrams 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.

👁 Java-Program-To-Check-Whether-Two-Strings-Are-Anagram

Program to Check Two Strings Are Anagram Of Each Other in Java

Below is the Program to check if two strings are anagrams Java using Sorting:


Output
The two strings are not anagram of each other

Explanation of the Program:

In this method, we first sort both strings and then compare both of them. If both string are equal that means both are Anagram else both strings are not Anagram.

The complexity of the above method

Time Complexity: O(NLogN)
Auxiliary space: O(1). 

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

Other Methods to Write Anagram Program in Java

There are certain methods to write an anagram program in Java as mentioned below:

  1. Count Characters
  2. Count Characters using one array
  3. Using HashMap()

1. Count characters for Checking Anagram

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 bits 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 characters in the corresponding count arrays.
  3. Compare count arrays. If both count arrays are the same, then return true.

Below is the implementation of the above idea:


Output
The two strings areanagram of each other

The complexity of the above method:

Time Complexity: O(n)
Auxiliary space: O(n)

2. 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 the count array for characters in str1 and decrement for characters in str2. Finally, if all count values are 0, then the two strings are anagrams of each other. Thanks to Ace for suggesting this optimization. 

Below is the implementation of the above method:


Output
The two strings are anagram of each other

The complexity of the above method

Time Complexity: O(n)
Auxiliary space: O(n)

3. Using HashMap()

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 occurrences 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:


Output
The two strings are anagram of each other

The complexity of the above method:

Time Complexity: O(n)
Auxiliary space: O(n) because using HashMap

Reference

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

Comment