I have a list of words that I want to display in a web page as a tag cloud. Each word has a corresponding 'weight' which determines how big the word should appear in the tag cloud.
Let's say that this array contains the number of times each word has been used to tag a document and I want to use these values as the weighting for each word:
int [] ints = new int[] { 1, 2, 4, 3, 2, 1, 4, 2, 1000};
I want the range of weightings to be within a specified range such that the rendering code has a predictable set of numbers to deal with however I don't want to simply normalize these integers because then all but the last will be essentially zero.
If this were to happen then there'd be a single item in the tag cloud that would be very big and all the other tags would be tiny. I'm looking for a way of squeezing all the of the integers into a limited range whilst preserving a degree of diversity.
So how can I transform the set such that the final large value doesn't make the others insignificant?