-
Notifications
You must be signed in to change notification settings - Fork 16
/
RectangleOverlap.java
27 lines (24 loc) · 963 Bytes
/
RectangleOverlap.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
public class RectangleOverlap {
public boolean isRectangleOverlap(int[] rec1, int[] rec2) {
Rectangle rectangle1 = new Rectangle(rec1);
Rectangle rectangle2 = new Rectangle(rec2);
return hasXIntersection(rectangle1, rectangle2) && hasYIntersection(rectangle1, rectangle2);
}
private boolean hasXIntersection(Rectangle rec1, Rectangle rec2) {
return (rec1.x1 <= rec2.x1 && rec2.x1 < rec1.x2)
|| (rec2.x1 < rec1.x1 && rec1.x1 < rec2.x2);
}
private boolean hasYIntersection(Rectangle rec1, Rectangle rec2) {
return (rec1.y1 <= rec2.y1 && rec2.y1 < rec1.y2)
|| (rec2.y1 < rec1.y1 && rec1.y1 < rec2.y2);
}
private static class Rectangle {
private final int x1, x2, y1, y2;
Rectangle(int[] points) {
this.x1 = points[0];
this.y1 = points[1];
this.x2 = points[2];
this.y2 = points[3];
}
}
}