Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a recent interview I was asked to write the below program. Find out the character whose frequency is minimum in the given String ? So I tried by iterating through the string by using charAt and storing the character as key in a HashMap and the number of occurences as its value. Now Again I have to iterate on the Map to find the lowest element.

Is there a more efficient way to do it as obviously the above one is too intensive i guess.

Update and Another Solution

After some thought process and answers I think the best time that this can be is O(n). In the first iteration we will have to iterate through the String character by character and then store their frequency in an Array at the specific position(character is an int) and same time have two temporary variables which maintain the least count and the corresponding character.So when I go to the next character and store its frequency in arr[char] = arr[char]+1;At the same time I will check if the temp varible has a value greater than this value,if yes then the temp varible will be this value and also the char will be this one.In this way i suppose we dont need a second iteration to find the smallest and also no sorting is required I guess

.... Wat say ? Or any more solutions

share|improve this question
2  
your running time is O(2n) = O(n). The best you can do is O(n). Maybe you can get rid of the second iteration but thats it. – Kevin Jun 2 '11 at 14:01
The second iteration is constant. The algorithm is fine but I'd suggest using an array instead of HashMap and that should be more efficient. – DHall Jun 2 '11 at 14:03
See this similar SO question: Get mode value in java The top answer does what you suggest. – dogbane Jun 2 '11 at 14:04
@Kevin .. yep .. if its a Sorted Map the second iteration can be O(1) to find the least or highest occurence character ... – whokares Jun 2 '11 at 14:04
This runs in O(n + m) where n is the length of the string, and m is the number of unique characters. I wonder if there is a way to reduce one of those terms. – jjnguy Jun 2 '11 at 14:08
show 4 more comments

4 Answers

I'd use an array rather than a hash map. If we're limited to ascii, that's just 256 entries; if we're using Unicode, 64k. Either way not an impossible size. Besides that, I don't see how you could improve on your approach. I'm trying to think of some clever trick to make it more efficient but I can't come up with any.

Seems to me the answer is almost always going to be a whole list of characters: all of those that are used zero times.

Update

This is probably clost to the most efficient it could be in Java. For convenience, I'm assuming we're using plain Ascii.

public List<Character> rarest(String s)
{
  int[] freq=new int[256];

  for (int p=s.length()-1;p>=0;--p)
  {
    char c=s.charAt(p);
    if (c>255)
      throw new UnexpectedDataException("Wasn't expecting that");
    ++freq[c];
  }
  int min=Integer.MAX_VALUE;
  for (int x=freq.length-1;x>=0;--x)
  {
    // I'm assuming we don't want chars with frequency of zero
    if (freq[x]>0 && min>freq[x])
      min=freq[x];
  }
  List<Character> rares=new ArrayList<Character>();
  for (int x=freq.length-1;x>=0;--x)
  {
    if (freq[x]==min)
      rares.add((char)x);
  }
  return rares;
}

Any effort to keep the list sorted by frequency as you go is going to be way more inefficient, because it will have to re-sort every time you examine one character.

Any attempt to sort the list of frequencies at all is going to be more inefficient, as sorting the whole list is clearly going to be slower than just picking the smallest value.

Sorting the string and then counting is going to be slower because the sort will be more expensive than the count.

Technically, it would be faster to create a simple array at the end rather than an ArrayList, but the ArrayList makes slightly more readable code.

There may be a way to do it faster, but I suspect this is close to the optimum solution. I'd certainly be interested to see if someone has a better idea.

share|improve this answer
Unicode 6.0 supports 109,449 characters. – Thomas Mueller Jun 2 '11 at 14:05
@Jay An Array might be fine ,but in the second iteration to find the actual answer a SortedHashMap wud reduce the complexity to 1 else for an array once again u have to itertae to find the minimum value .. wat say ? – whokares Jun 2 '11 at 14:09
@Jay SortedMap though wud increase the time for every step as it ha sto sort .. – whokares Jun 2 '11 at 14:27
@Thomas: Hmm, good point, I didn't know that until reading your post. A little research reveals that a Java "char" is still just 16 bits, but they've now added additional functions to peruse a string and return code points as int's rather than char's. So okay, if we need to support the latest incarnation of Unicode, we'd need a bigger array. Assuming each entry is an int, that's still a mere 400k, not impossible, though it is starting to get big. I suppose if Unicode 7 supports 32 bit values an array approach is starting to get impractical. – Jay Jun 2 '11 at 19:42
@whataheck: I'm not familiar with a "SortedHashMap". I don't see it in the Javadocs. I guess this is something from a newer version of Java than I have or you're getting it from a 3rd party library. Either way, if it re-sorts the map every time you update a value, this is going to be way slower than checking for the smallest value once. Indeed, even if it only sorts once when you're done, it's still a lot more work to sort the whole map then to just find the smallest value. – Jay Jun 2 '11 at 19:46
show 2 more comments

The process of finding frequency of characters in a String is very easy.
For answer see my code.

import java.io.*;
public class frequency_of_char
{
    public static void main(String args[])throws IOException
    {
        BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
        int ci,i,j,k,l;l=0;
        String str,str1;
        char c,ch;
        System.out.println("Enter your String");
        str=in.readLine();
        i=str.length();
        for(c='A';c<='z';c++)
        {
            k=0;
            for(j=0;j<i;j++)
            {
                ch=str.charAt(j);
                if(ch==c)
                    k++;
            }
            if(k>0)
            System.out.println("The character "+c+" has occured for "+k+" times");
        }
    }
}
share|improve this answer

I think your approach is in theory the most efficient (O(n)). However in practice it needs quite a lot of memory, and is probably very slow.

It is possibly more efficient (at least it uses less memory) to convert the string to a char array, sort the array, and then calculate the frequencies using a simple loop. However, in theory it is less efficient (O(n log n)) because of sorting (unless you use a more efficient sort algorithm).

Test case:

import java.util.Arrays;

public class Test {

    public static void main(String... args) throws Exception {
        //        System.out.println(getLowFrequencyChar("x"));
        //        System.out.println(getLowFrequencyChar("bab"));
        //        System.out.println(getLowFrequencyChar("babaa"));
        for (int i = 0; i < 5; i++) {
            long start = System.currentTimeMillis();
            for (int j = 0; j < 1000000; j++) {
                getLowFrequencyChar("long start = System.currentTimeMillis();");
            }
            System.out.println(System.currentTimeMillis() - start);
        }

    }

    private static char getLowFrequencyChar(String string) {
        int len = string.length();
        if (len == 0) {
            return 0;
        } else if (len == 1) {
            return string.charAt(0);
        }
        char[] chars = string.toCharArray();
        Arrays.sort(chars);
        int low = Integer.MAX_VALUE, f = 1;
        char last = chars[0], x = 0;
        for (int i = 1; i < len; i++) {
            char c = chars[i];
            if (c != last) {
                if (f < low) {
                    if (f == 1) {
                        return last;
                    }
                    low = f;
                    x = last;
                }
                last = c;
                f = 1;
            } else {
                f++;
            }
        }
        if (f < low) {
            x = last;
        }
        return (char) x;
    }

}
share|improve this answer
good .. ur logic is bit diffrnt .. though it might not be efficient cheers .. – whokares Jun 2 '11 at 14:10
Let's see who can get faster than that :-) – Thomas Mueller Jun 2 '11 at 15:37
What do u thnk of the solution that I proposed in my question ... ? – whokares Jun 3 '11 at 6:42
See my comment above: the updated answer doesn't work. If you don't believe me, please implement it. – Thomas Mueller Jun 3 '11 at 7:32

I'd do it the following way as it involves the fewest lines of code:

character you wish to want to know frequency of: "_"
String "this_is_a_test"

String testStr = "this_is_a_test";
String[] parts = testStr.split("_"); //note you need to use regular expressions here
int freq = parts.length -1;

You may find weird things happen if the string starts or ends with the character in question, but I'll leave it to you to test for that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.