Hi I want to write anagram algorithm in java. My requirement is if someone gave a string like this
Input: "aa aa odg dog gdo"
its count of anagram count should be 2. Can anyone help me to fix this?
I have tried a solution but it is nit working.
public static void main(String[] args) {
String text = "a c b c run urn urn";
String word = "urn";
System.out.print(countAnagrams(text, word));
}
static boolean araAnagram(String s1,
String s2)
{
char[] ch1 = s1.toCharArray();
char[] ch2 = s2.toCharArray();
Arrays.sort(ch1);
Arrays.sort(ch2);
if (Arrays.equals(ch1, ch2))
return true;
else
return false;
}
static int countAnagrams(String text, String word)
{
int N = text.length();
int n = word.length();
int res = 0;
for (int i = 0; i <= N - n; i++) {
String s = text.substring(i, i + n);
if (araAnagram(word, s))
res++;
}
return res;
}
This program does not suit with my requirement please help.
Assuming that there is a method to convert a word into an ordered sequence of characters, the number of anagrams may be calculated using Stream API:
Test:
Output