IntelliJ open source
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Java in General
 
RSS feed
 
New topic
Author

comparing keys of two hashmaps

Mohit Sinha
Ranch Hand

Joined: Nov 29, 2004
Messages: 108

Hi All,

I want to identify the identical keys amongst two haspmaps (H1 and H2).
Also I need to identify elements of H1 not available in H2 and vice versa.

Currently I am using the HashMap interface containsKey method but have to do something like this

- loop throught all keys of H1 and H2.containsKey(h1_key)
- loop throught all keys of H2 and H1.containsKey(h2_key)

Ist there a better view to implement the same.


Thanks


Pat Farrell
Ranch Hand

Joined: Aug 11, 2007
Messages: 2259

If you use the Google Collections package, it has functions to do the usual intersection, union, and difference functions for sets.
Vivek K Singh
Ranch Hand

Joined: Dec 22, 2009
Messages: 74

You do not need to loop thru both the maps, you can do something like:



This will get all keys from the hashmap1 and compare to the hashmap2 and print duplicates...

This message was edited 1 time. Last update was at by Vivek K Singh


SCJP 6
Rob Prime
Bartender

Joined: Oct 27, 2005
Messages: 8837

Or use keySet() in combination with the bulk operators:

SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Java in General
 
RSS feed
 
New topic
hibernate profiler