C++ Program for Merge intervals
Merge intervals in C++
Here, in this page we will discuss the program to merge intervals in C++ . We are Given with a set of time intervals in any order, we need to merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
Let the intervals be represented as pairs of integers for simplicity.
Method Discussed :
- Method 1 : Naive Approach
- Method 2 : Efficient Approach
Method 1:
Sort the intervals based on increasing order of starting time.
Push the first interval on to a stack.
For each interval do the following
a. If the current interval does not overlap with the stack top, push it.
b. If the current interval overlaps with stack top and ending time of current interval is more than that of stack top, update stack top with the ending time of current interval.At the end stack contains the merged intervals.
Method 1 : code in C++
// A C++ program for merging overlapping intervals
#include<bits/stdc++.h>
using namespace std;
// An interval has start time and end time
struct Interval
{
int start, end;
};
// Compares two intervals according to their starting time.
// This is needed for sorting the intervals using library
bool
compareInterval (Interval i1, Interval i2)
{
return (i1.start < i2.start);
}
// The main function that takes a set of intervals, merges
// overlapping intervals and prints the result
void
mergeIntervals (Interval arr[], int n)
{
// Test if the given set has at least one interval
if (n <= 0)
return;
// Create an empty stack of intervals
stack s;
// sort the intervals in increasing order of start time
sort (arr, arr + n, compareInterval);
// push the first interval to stack
s.push (arr[0]);
// Start from the next interval and merge if necessary
for (int i = 1; i < n; i++)
{
// get interval from stack top
Interval top = s.top ();
// if current interval is not overlapping with stack top,
// push it to the stack
if (top.end < arr[i].start)
s.push (arr[i]);
// Otherwise update the ending time of top if ending of current
// interval is more
else if (top.end < arr[i].end)
{
top.end = arr[i].end;
s.pop ();
s.push (top);
}
}
// Print contents of stack
cout << "\n The Merged Intervals are: ";
while (!s.empty ())
{
Interval t = s.top ();
cout << "[" << t.start << "," << t.end << "] ";
s.pop ();
}
return;
}
// Driver program
int
main ()
{
Interval arr[] = { {6, 8}, {1, 9}, {2, 4}, {4, 7} };
int n = sizeof (arr) / sizeof (arr[0]);
mergeIntervals (arr, n);
return 0;
}
Output
The Merged Intervals are: [1,9]
Method 2 :
Sort all intervals in increasing order of start time.
Traverse sorted intervals starting from first interval, do following for every interval.
If current interval is not first interval and it overlaps with previous interval, then merge it with previous interval. Keep doing it while the interval overlaps with the previous one.
Else add current interval to output list of intervals.
Method 2 : code in C++
// C++ program to merge overlapping Intervals in
// O(n Log n) time and O(1) extra space.
#include<bits/stdc++.h>
using namespace std;
// An Interval
struct Interval
{
int s, e;
};
// Function used in sort
bool mycomp(Interval a, Interval b)
{ return a.s < b.s; }
void mergeIntervals(Interval arr[], int n)
{
// Sort Intervals in increasing order of
// start time
sort(arr, arr+n, mycomp);
int index = 0; // Stores index of last element
// in output array (modified arr[])
// Traverse all input Intervals
for (int i=1; i< n; i++)
{
// If this is not first Interval and overlaps
// with the previous one
if (arr[index].e >= arr[i].s)
{
// Merge previous and current Intervals
arr[index].e = max(arr[index].e, arr[i].e);
arr[index].s = min(arr[index].s, arr[i].s);
}
else {
index++;
arr[index] = arr[i];
}
}
// Now arr[0..index-1] stores the merged Intervals
cout << "\n The Merged Intervals are: ";
for (int i = 0; i <= index; i++)
cout << "[" << arr[i].s << ", " << arr[i].e << "] ";
}
// Driver program
int main()
{
Interval arr[] = { {6,8}, {1,9}, {2,4}, {4,7} };
int n = sizeof(arr)/sizeof(arr[0]);
mergeIntervals(arr, n);
return 0;
}
Output
The Merged Intervals are: [1,9]
Prime Course Trailer
Related Banners
Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription

Login/Signup to comment