i have a list of dates and a current date how can i find the date which is nearest to the current date.
|
|
I'd use
|
|||||||||||||||||
|
|
Loop through all dates with the following: When you find a date with a difference less than that of the what you're keeping track of in (2), update the difference and the current closest date At the end, the current closest date is the closest date in the collection here's code in python:
|
||||
|
|
|
If the list is sorted, then you can use For very large lists, this is much faster than the other solutions, but of course it does require the list to be sorted. If you're going to do such a query multiple times, it would be worth it (performance-wise) to sort the list first. |
|||
|
|
|
You can try this code :
|
||||
|
|
|
If you can use a
|
|||
|
|