You can find if 2 strings are anagrams after sorting both strings in O(nlogn) time, however is it possible to find it in o(n) time and O(1) space.
|
Absolutely no expert here... But why not go through each string and simply count how many times each letter turns up. Given appropriate implementation, this shouldn't take more than O(n) time. |
|||||||||||||||||||
|
|
generate a prime number array[26] each prime number represent a character, then when you traverse the string, multiple each character's prime number, if equal, it is anagrams, otherwise not. it takes O(n) and constant space |
|||
|
|
|
Yes, use a hash and count occurences. If at the end, we have a non-zero figure, then the strings are not anagrams.
This will run in O(n) + O(n) + c = O(n). Our hash contains 26-letter spots, each with an integer associated with it. The space is therefore O(26) = O(1) [[Edit]], same as above, but with time-analysis annotations:
|
||||
|
|
|
If you transform a words characters in sorted order and hash the String. Every String which has the same hash after sorting will be an anagram(very probable, there is always a chance of collisions) of the other. |
|||
|
|
|
Maybe something like:
Subtract every character from string 2 and add every character from string 1 to count (assuming ASCII characters). If they are anagrams, count will be equal to zero. This doesn't account for anagrams that have inserted spaces, though. |
|||||
|
|
the above code would fail to work in all condition rateher we can go for a quick sort and compare the array while elimating spaces |
|||
|
|
|
Run in : Fix Used Space : Here is code in Java
|
||||
|
|