How can we store the frequency of alphabets in a string using minimum possible memory..
I think bit array or using bit manipulation, this cannot be achieved as we need to store the frequency, and not only the occurrence of alphabet(true or false)...
Please let me know, if any other data structure exist for this problem..
also, we need to find the alphabets which has maximum frequency (aplhabets with same maximum frequency ) should get printed.?? Please i need an efficient alogrithm...