组合/合并日期范围的算法
我正在尝试找到如何将日期范围合并到一个数据库记录(数组元素)中的最佳方法。
这是我拥有的数据:
Array
(
[0] => Array
(
[id] => 18298
[start_date] => 2011-07-09
[end_date] => 2011-10-01
)
[1] => Array
(
[id] => 18297
[start_date] => 2011-06-01
[end_date] => 2011-06-30
)
[2] => Array
(
[id] => 17113
[start_date] => 2011-03-31
[end_date] => 2011-05-31
)
[3] => Array
(
[id] => 20555
[start_date] => 2011-01-03
[end_date] => 2011-03-31
)
)
在我们将它们组合起来之后,数组(或数据库)应该如下所示:
Array
(
[0] => Array
(
[merged_ids] => 18298
[start_date] => 2011-07-09
[end_date] => 2011-10-01
)
[1] => Array
(
[merged_ids] => 18297, 17113, 20555
[start_date] => 2011-01-03
[end_date] => 2011-06-30
)
)
是否有任何算法可以遍历所有元素/范围并将它们组合起来?哪种方法更好/更容易实现 - 通过数据库(MYSQL)还是编码(PHP)?
任何建议都将受到高度赞赏。
谢谢!
更新:抱歉,我没有提供足够的信息:我们应该合并任何连续和重叠的日期范围。
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
[start_date] => 2011-07-09
[end_date] => 2011-10-01
)
[1] => Array
(
[id] => 18297
[start_date] => 2011-06-01
[end_date] => 2011-06-30
)
[2] => Array
(
[id] => 17113
[start_date] => 2011-03-31
[end_date] => 2011-05-31
)
[3] => Array
(
[id] => 20555
[start_date] => 2011-01-03
[end_date] => 2011-03-31
)
)
And after we combine them, array (or database) should look like this:
Array
(
[0] => Array
(
[merged_ids] => 18298
[start_date] => 2011-07-09
[end_date] => 2011-10-01
)
[1] => Array
(
[merged_ids] => 18297, 17113, 20555
[start_date] => 2011-01-03
[end_date] => 2011-06-30
)
)
Is there any algorithm to go through all elements/ranges and combine them? Which way is better/easier to do - through database (MYSQL) or coding (PHP)?
Any advise is highly appreciated.
Thanks!
UPDATE: Sorry, I didn't provide enough info: we should merge any continuous and overlapping date ranges.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
按开始日期排序。
然后迭代并检查下一个项目的开始日期是在当前项目的结束日期之前还是之后。如果是,则将下一个合并到当前一个中。然后继续。
Sort by start date.
Then iterate through and check for if the next item's start date is before or directly after the current one's end date. If it is, then merge the next one into the current one. Then continue.
我编写了组合/合并范围列表的函数。它是用 Python 编写的,但用 PHP 重写应该很容易。这是完整的代码: https://gist.github.com/barszczmm/8447665 这是简化的算法(仍然是Python):
I've written function which combines/merges list of ranges. It is written in Python, but it should be easy to rewrite it in PHP. Here's full code: https://gist.github.com/barszczmm/8447665 and here's simplified algorithm (still in Python):
实现就像:
The implementation is like:
我的方法将生成一个合并数组,其中通过重叠或连续的日期分组在一起,并且组的 id 存储为逗号空格分隔值的字符串。
我使用现代的“太空飞船运算符”(
<=>
) 进行usort()
的比较。如果您的代码运行在 php7 以下的版本上,您可以使用:请参阅内联注释以获取分步说明。
代码:(演示)
输出:
My method will generate a merged array where by overlapping or consecutive dates are grouped together and the group's ids are stored as a string of comma-space separated values.
I am using the modern "spaceship operator" (
<=>
) forusort()
s comparison. If your code is running on a version below php7, you can use:See inline comments for step-by-step explanation.
Code: (Demo)
Output: