The problem is that I have array with 5 numbers:
300 295 250 105 100 95
The result needed: the most numbers that have least difference specified by threshold. If you cant understand: in the example threshold is 5 and the winning set of numbers is 95,100,105 - because there are 3 numbers that are close to each other and the other set (295,300) is only 2.
I will try to come up with more clear explanation soon.
{1,2,3,4}with threshold1: I thought that the largest valid subset is{1,2,3}or{2,3,4}since around a median value they span only1, however a running threshold will acccept the entire set{1,2,3,4}since between consecutive values there is only a difference of1. Please clarify your requirements. I have a reasonably simpleO(nlogn)solution if my understanding is correct. – davin Nov 17 '11 at 11:25