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

In this bit of code, i am attempting to split a string into Characters and place each character into a map. If the same Character appears more than once I put a counter on it and place it back into the map, incrementing the integer(frequency).

public class FrequencyMap {
   public static Map<Character, Integer> generateMap(String s){
       HashMap<Character, Integer> myMap = new HashMap<Character, Integer>();
       //generate a map of frequencies of the characters in s
       //need to break the string down into individual characters, sort them
       //in there frequencies then place them in map
       for(int i = 0; i < s.length(); i++){
           //break string into characters
           //need to determine how many characters make up the string, can do this by 
           //putting a counter on each letter that appears when the string is being 
           //broken down, if a letter reoccurs increment the counter by one.
           s.substring(i);
           char ch = s.charAt(i);
           myMap.put(ch, i);
           //calculating the occurence of a character in a string.
           if(myMap.containsKey(ch)){                   
               myMap.put(ch, myMap.get(i) + 1);                   
                  }//end of if statement
           }//end of for loop          
           return myMap;
       }//end of public generateMap()
   }//end of FrequencyMap

Here is the main

   public static void main(String args[]){

       String str = "missisippi";

       Map frequencyMap = FrequencyMap.generateMap(str);
       HuffmanTree tree = new HuffmanTree(frequencyMap);
       Map<Character, String> encodingMap = tree.getEncodingMap();

       String encoded = tree.encode(str, encodingMap);
       System.out.println(encoded);     
   }//end of main  
share|improve this question
What is the problem you're experiencing with your code? – Kevin Nov 15 '12 at 21:03
1  
The line s.substring(i); is a no-op. You take a substring of s and then discard it. – Jan Dvorak Nov 15 '12 at 21:03
with just a quick glance. s.substring(i); is not changing s. – Billiska Nov 15 '12 at 21:03
After char ch = s.charAt(i); myMap.put(ch, i);, myMap will always contain a mapping for ch. You should not insert anything before you look inside. – Jan Dvorak Nov 15 '12 at 21:05
2  
Dave, perhaps you should go back and accept some answers to your older questions. People might be less likely to provide help if they don't think you'll look at the answers anyway. – Mark Hildreth Nov 15 '12 at 21:08
show 3 more comments

2 Answers

up vote 2 down vote accepted

Okay a few things...

Strings are immutable!!

s.substring(i);

should really be

s = s.substring(i);

Although I'm still not quite sure what the point of this is altogether.


Secondly..

These lines don't make sense

myMap.put(ch, i);

if(myMap.containsKey(ch)){                   
    myMap.put(ch, myMap.get(i) + 1);                   
}

You just added the key ch and then you immediately ask if the map contains ch - that will always be true.

I think you might have meant to put the if-statement first and to put myMap.put(ch, 1) in an else-clause. Oh, and myMap.get(i) probably should have been myMap.get(ch).

share|improve this answer

You are initialising your counters with the character position:

myMap.put(ch, i);

where you want:

myMap.put(ch, 1);

You also want to check the map for an already existing character before you initialise the counter, incrementing the counter of it does (using get(ch) not get(i)), giving:

    char ch = s.charAt(i);
    //calculating the occurence of a character in a string.
    if (myMap.containsKey(ch)){                   
        myMap.put(ch, myMap.get(ch) + 1);
    } else {
        myMap.put(ch, 1);
    }//end of if statement
share|improve this answer
Thanks for your help, that problem is solved. – Dave Fisher Nov 15 '12 at 21:15

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.