Tagged Questions
1
vote
1answer
95 views
Clustering dates into periods
The Problem
I have a list of Keys and another list of Dates for each of these keys. Basically a Multimap of Keys to Dates (in Java, Multimap<Key, Date>). I use these Keys and Dates to query a ...
4
votes
2answers
525 views
How to extract every Monday and every fortnightly Monday from a range of two dates in PHP?
I'm using the infamous jQuery UI's Datepicker, and in my form I select a range of two dates.
First represents the starting date and the other represents the end date.
What I need now is the ...
0
votes
1answer
959 views
Algorithm to combine / merge date ranges
I am trying to find the best way on how to merge date ranges into one database record (array element).
This is the data I have:
Array
(
[0] => Array
(
[id] => 18298
...
0
votes
3answers
2k views
Getting Random Durations within a range in C#
For a random event generator I'm writing I need a simple algorithm to generate random ranges.
So, for example:
I may say I want 10 random intervals, between 1/1 and 1/7, with no overlap, in the ...