I wanted help regarding Java program to find out nearest match to any given integer in unsorted array of integers
Can I please have suggestions about:
* How to get start off with this?
* Should i first sort the array
Thanks All
|
|
|
If you only need to perform the search once, you can scan the array from start to finish, keeping track of the value that's nearest to the one you're seeking. If you need to search in the same array repeatedly, you should pre-sort the array and then repeatedly use binary search. |
||||
|
|
|
If you cannot sort the array, or you are only doing this once, you can do.
This will return one closest value. If you are looking for a value equally between two values, you will get the first one. An optimised version.
A multi-thread version
running this test
for 100 million values prints
Using the second approach saves 0.8 ms per million entries. The third approach is much faster for large arrays, but is likley to be slower for smaller ones. |
|||||||||||||||
|
|
Yes, sort the array and then use
|
|||||||||||||||
|
|
No, you don't need to pre-sort the array. Just run through it, recording the position and value of the current nearest match, updating it at each iteration if necessary. This takes O(n) time while sorting would take O(n lg n) (unless you do a counting sort, which is not always applicable). Only if you want to do this operation repeatedly will sorting pay off. |
|||
|
|
|
|||
|
|
|
Don't sort the array first since it will modify the original array. Instead, loop through the array keeping track of the difference between the current array element and your given value (and the array element with the smallest difference so far). The complexity here is linear; you can't beat that with sorting. |
|||
|
|