I hava a list of Products, which have a Price as a BigInteger. I want to create dynamic price-ranges to filter the product-search, like google does on google.com/shopping:
How do i calculate good dynamic price ranges from the given list of items/prices? I tried google but couldn't find any good results or any solution at all! I do NOT want to define Ranges by hand and simply add the prices to the given ranges....
I appreciate your help!
You have to filter your products, e.g. with the Java 8 Streaming API (if Java 8 is available):
Of course, at the end of the Stream, you could do
.forEach(this::output);
instead.If you need Support for older Versions, the equivalent would be a
for
loop:You can of course wrap it up as a method:
Find ranges
If you have 30 items you want to divide into 3 ranges, you want your ranges to be price of the lowest - somewhere between price of the tenth lowest and price of the eleventh lowest.
let's assume you already sorted your list somehow:
The Problem is, you will get ranges like 2.99 - 3.49 / 3.49 - 12.35 etc.
That means that you will need to "round" prices. You can either make a static list of allowed range starts / ends and seek the next biggest range end:
You could of course generate your ranges, in case your prices skyrocket and you don't want to change your static ranges: