Interval Scheduling: Interval Merging
Translator: GYHHAHA
Author: labuladong
In the "Interval Scheduling: Greedy Algorithm", we use greedy algorithm to solve the interval scheduling problem, which means, given a lot of intervals, finding out the maximum subset without any overlapping.
Actually, there are many other relating problems about interval itself. Now, we will talk about the "Merge Interval Problem".
【Leetcode 56】Merge Intervals
Given a collection of intervals, merge all overlapping intervals.
Example 1:
Example 2:
NOTE: input types have been changed on April 15, 2019. Please reset to default code definition to get new method signature.
The general thought for solving interval problems is observing regular patterns after the sorting process.
First Part: Thought
A certain interval can be defined as[start, end]
, the interval scheduling in the last article states the sorting process need to be done by end
. But for the merging problem, both sorting with the end
or start
are acceptable. For the clear purpose, we choose sorting by start
.
【Explanations for chinese in the picture】
【按start排序:sorting by start】【索引:index】
Clearly, for the merging result x
, x.start
must have the smallest start
in these intersected intervals, and x.end
must have the largest end
in these intersected intervals as well.
Since ordered, x.start
is easy to achieve, and computing x.end
is also not difficult as well, which can take an analogy of searching the max number in a certain array.
Second Part: Code
It will be illustrated more clearly by the follow gif.
So far, the Interval Merging Problem have been solved.
The End. Hope this article can help you!
Last updated