-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_intervals.cpp
65 lines (64 loc) · 1.56 KB
/
merge_intervals.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// que link - https://www.interviewbit.com/problems/merge-intervals/
// solution
/**
* Definition for an interval.
* struct Interval {
* int start;
* int end;
* Interval() : start(0), end(0) {}
* Interval(int s, int e) : start(s), end(e) {}
* };
*/
vector<Interval> Solution::insert(vector<Interval> &intervals, Interval newInterval) {
// Do not write main() function.
// Do not read input, instead use the arguments to the function.
// Do not print the output, instead return values as specified
// Still have a doubt. Checkout www.interviewbit.com/pages/sample_codes/ for more details
int s = newInterval.start;
int e = newInterval.end;
int ss, ee;
int i;
int sp;
for(i=0; i<intervals.size(); i++)
{
Interval xx = intervals[i];
if(s >= xx.start && s <= xx.end)
{
ss = xx.start;
sp=1;
break;
}
else if(s < xx.start)
{
ss = s;
sp=0;
break;
}
}
int j;
for(j=i+sp; j<intervals.size(); j++)
{
if(e < intervals[j].start)
{
ee = e;
break;
}
else if(e > intervals[j].start && e < intervals[j].end)
{
ee = intervals[j].end;
j++;
break;
}
}
vector<Interval> vv;
for(int k=0; k<i; k++)
{
vv.push_back(intervals[k]);
}
vv.push_back(Interval(ss,ee));
for(int k=j; k<intervals.size(); k++)
{
vv.push_back(intervals[k]);
}
return vv;
}