Calculate all keys of maximum times occurring value from HashTable in JAVA
Calculate all keys of maximum times occurring value from HashTable in JAVA ------------------------------------------------------------------------------- Recently one of my friend had come across one problem, where he had a hashtable (or just consider its just a key/value map), and in our case it was of type Hashtable(String, ArrayList(Long)) and now the arraylist size may vary, it can have duplicate long type values. and he needed to get the maximum times occurring long number's all keys from values ArrayLists (i.e. for which all keys its present in values ArrayList) So we did it this way - Its just my try, as it was a interesting programming challenge, so posting for others who need this kind of data mining in java (logic remains same for other programming languages too) FileName - LogicProHashTB.java //FileName - LogicProHashTB.java package logic.others; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; impor...