Java Hashmap Question?
-
For my homework, we are supposed to implement a Contact List(i.e. a phone book) using a hashmap, with the keys being the names of the people and the values being their phone number(s). I have implemented that much correctly. However, we are then supposed to include a method that displays the keys/values of the hashmap in alphabetical order. My original thought was to simply copy the values of the hashmap over to a treemap which would sort them by default, but my professor said there was a simpler way and I cannot think of one. Does anyone have an idea for a simple method to display the keys/values of the hashmap in alphabetical order?
-
Answer:
Well, I guess if you cannot leverage the TreeMap to back your contact list then here is one possible way to do it. Writing this off the top of my head so no guarantee as to compiling etc. Create a new TreeSet Object with the keys from your HashMap. Iterate through the new TreeSet and get the values from the HashMap for the key. Print out the key and the values. Sample: //Assume that you stored your hashMap as HashMap<String, List<String>> public void printListing() { Set<String> mySet = new TreeSet<String>(myHashMap.keySet()); for(String myKey : mySet) { print(myKey); } } private void print(String aKey) { //Using the key, get the list of phone numbers and print them out. List<String> myPhones = hashMap.get(aKey); StringBuffer myBuf = new StringBuffer(aKey); if(myPhones != null) { for(String myNumber : myPhones) { myBuf.append(myNumber); } } System.out.println(myBuf.toString()); }
yahskara... at Yahoo! Answers Visit the source
Other answers
Can you not just store the items in a treemap to begin with?
Max Demian
Related Q & A:
- How to Implement Gateway Service something similar to Oracle API gateway Using Java and Java based Open Source frameworks only?Best solution by Quora
- How to hashMap an array in Java?Best solution by Stack Overflow
- How to remove your question from yahoo question/answers?Best solution by Yahoo! Answers
- Difference between Java 2 and Java 6?Best solution by Yahoo! Answers
- How to remove a question in the ask question editor?Best solution by Meta Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.