Basic question on passing references of HashMaps
Hi ! I have defined a HashMap which uses a double type key and another HashMap as value as shown HashMap<Double, HashMap<Double, String>> HM1 = new HashMap<Double, HashMap<Double, String>>(); Now for each entry of this HashMap I have a reference to a different HashMap; the name of which is derived from the key value of that entry in t...