LeetCode p56 Merge Intervals 题解
1.题目:
Given a collection of intervals, merge all overlapping intervals.
For example,
Given [1,3],[2,6],[8,10],[15,18],
return [1,6],[8,10],[15,18].
题意:
合并所有重叠部分。
2.解题思路:
先排序再覆盖,见代码。
3.代码
1 |
|
很高兴遇见你~
Given a collection of intervals, merge all overlapping intervals.
For example,
Given [1,3],[2,6],[8,10],[15,18],
return [1,6],[8,10],[15,18].
题意:
合并所有重叠部分。
先排序再覆盖,见代码。
1 |
|