I have an array of Strings:
String[] stringArray = {"x", "y", "z", "x", "x", "y", "a"};
What is the quickest/most efficient way to order this into a smaller Collection
in order of how frequent each String
is with its frequency?
I though about using the String
as a key in a HashMap<String,Integer>
but this wouldnt be sorted in terms of frequency
My other method i considered is using a TreeMap<Integer, String[]>
with a list of Strings with that integer, but there seems a lot of checking involved..
Im trying to avoid using more than one loop If possible as my String
arrays will be much larger than the one above. Thanks!
EDIT What i want is just to be able to output the Strings in order of frequency and preferably be able to pair that String with its frequency in the array, So for example two output arrays:
["x", "y", "z", "a"]
[3,2,1,1]
This would be quite a simple problem if speed wasnt an issue which is why i ask the great minds on here :)