-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathIntervalListIntersections.java
62 lines (58 loc) · 2.05 KB
/
IntervalListIntersections.java
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
/*https://leetcode.com/problems/interval-list-intersections/*/
class Solution {
public int[][] intervalIntersection(int[][] firstList, int[][] secondList) {
int f = 0, s = 0, F = firstList.length, S = secondList.length;
int[] first, second, newEntry;
ArrayList<int[]> list = new ArrayList<int[]>();
int[][] result;
while (f < F && s < S)
{
first = firstList[f];
second = secondList[s];
if (!(first[1] < second[0] || second[1] < first[0]))
{
newEntry = new int[2];
newEntry[0] = Math.max(first[0],second[0]);
newEntry[1] = Math.min(first[1],second[1]);
list.add(newEntry);
if (newEntry[1] == first[1]) ++f;
else if (newEntry[1] == second[1]) ++s;
}
else
{
if (first[1] < second[0]) ++f;
else if (second[1] < first[0]) ++s;
}
}
result = new int[list.size()][2];
int i = 0;
for (int[] entry : list)
result[i++] = entry;
return result;
}
}
class Solution {
public int[][] intervalIntersection(int[][] firstList, int[][] secondList) {
int f = 0, s = 0, F = firstList.length, S = secondList.length;
int[] first, second, newEntry;
ArrayList<int[]> list = new ArrayList<int[]>();
int[][] result;
while (f < F && s < S)
{
first = firstList[f];
second = secondList[s];
if (first[1] < second[0]) ++f;
else if (second[1] < first[0]) ++s;
else
{
newEntry = new int[2];
newEntry[0] = Math.max(first[0],second[0]);
newEntry[1] = Math.min(first[1],second[1]);
list.add(newEntry);
if (newEntry[1] == first[1]) ++f;
else if (newEntry[1] == second[1]) ++s;
}
}
return list.toArray(new int[list.size()][2]);
}
}