RectHV.java
8.14 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/******************************************************************************
* Compilation: javac RectHV.java
* Execution: none
* Dependencies: Point2D.java
*
* Immutable data type for 2D axis-aligned rectangle.
*
******************************************************************************/
package edu.princeton.cs.algs4;
/**
* The {@code RectHV} class is an immutable data type to encapsulate a
* two-dimensional axis-aligned rectagle with real-value coordinates.
* The rectangle is <em>closed</em>—it includes the points on the boundary.
* <p>
* For additional documentation,
* see <a href="http://algs4.cs.princeton.edu/12oop">Section 1.2</a> of
* <i>Algorithms, 4th Edition</i> by Robert Sedgewick and Kevin Wayne.
*
* @author Robert Sedgewick
* @author Kevin Wayne
*/
public final class RectHV {
private final double xmin, ymin; // minimum x- and y-coordinates
private final double xmax, ymax; // maximum x- and y-coordinates
/**
* Initializes a new rectangle [<em>xmin</em>, <em>xmax</em>]
* x [<em>ymin</em>, <em>ymax</em>].
*
* @param xmin the <em>x</em>-coordinate of the lower-left endpoint
* @param xmax the <em>x</em>-coordinate of the upper-right endpoint
* @param ymin the <em>y</em>-coordinate of the lower-left endpoint
* @param ymax the <em>y</em>-coordinate of the upper-right endpoint
* @throws IllegalArgumentException if any of {@code xmin},
* {@code xmax}, {@code ymin}, or {@code ymax}
* is {@code Double.NaN}.
* @throws IllegalArgumentException if {@code xmax < xmin} or {@code ymax < ymin}.
*/
public RectHV(double xmin, double ymin, double xmax, double ymax) {
if (Double.isNaN(xmin) || Double.isNaN(xmax))
throw new IllegalArgumentException("x-coordinate cannot be NaN");
if (Double.isNaN(ymin) || Double.isNaN(ymax))
throw new IllegalArgumentException("y-coordinates cannot be NaN");
if (xmax < xmin || ymax < ymin) {
throw new IllegalArgumentException("Invalid rectangle");
}
this.xmin = xmin;
this.ymin = ymin;
this.xmax = xmax;
this.ymax = ymax;
}
/**
* Returns the minimum <em>x</em>-coordinate of any point in this rectangle.
*
* @return the minimum <em>x</em>-coordinate of any point in this rectangle
*/
public double xmin() {
return xmin;
}
/**
* Returns the maximum <em>x</em>-coordinate of any point in this rectangle.
*
* @return the maximum <em>x</em>-coordinate of any point in this rectangle
*/
public double xmax() {
return xmax;
}
/**
* Returns the minimum <em>y</em>-coordinate of any point in this rectangle.
*
* @return the minimum <em>y</em>-coordinate of any point in this rectangle
*/
public double ymin() {
return ymin;
}
/**
* Returns the maximum <em>y</em>-coordinate of any point in this rectangle.
*
* @return the maximum <em>y</em>-coordinate of any point in this rectangle
*/
public double ymax() {
return ymax;
}
/**
* Returns the width of this rectangle.
*
* @return the width of this rectangle {@code xmax - xmin}
*/
public double width() {
return xmax - xmin;
}
/**
* Returns the height of this rectangle.
*
* @return the height of this rectangle {@code ymax - ymin}
*/
public double height() {
return ymax - ymin;
}
/**
* Returns true if the two rectangles intersect.
*
* @param that the other rectangle
* @return {@code true} if this rectangle intersect the argument
rectagnle at one or more points, including on the boundary
*/
public boolean intersects(RectHV that) {
return this.xmax >= that.xmin && this.ymax >= that.ymin
&& that.xmax >= this.xmin && that.ymax >= this.ymin;
}
/**
* Returns true if this rectangle contain the point.
* @param p the point
* @return {@code true} if this rectangle contain the point {@code p},
possibly at the boundary; {@code false} otherwise
*/
public boolean contains(Point2D p) {
return (p.x() >= xmin) && (p.x() <= xmax)
&& (p.y() >= ymin) && (p.y() <= ymax);
}
/**
* Returns the Euclidean distance between this rectangle and the point {@code p}.
*
* @param p the point
* @return the Euclidean distance between the point {@code p} and the closest point
on this rectangle; 0 if the point is contained in this rectangle
*/
public double distanceTo(Point2D p) {
return Math.sqrt(this.distanceSquaredTo(p));
}
/**
* Returns the square of the Euclidean distance between this rectangle and the point {@code p}.
*
* @param p the point
* @return the square of the Euclidean distance between the point {@code p} and
* the closest point on this rectangle; 0 if the point is contained
* in this rectangle
*/
public double distanceSquaredTo(Point2D p) {
double dx = 0.0, dy = 0.0;
if (p.x() < xmin) dx = p.x() - xmin;
else if (p.x() > xmax) dx = p.x() - xmax;
if (p.y() < ymin) dy = p.y() - ymin;
else if (p.y() > ymax) dy = p.y() - ymax;
return dx*dx + dy*dy;
}
/**
* Compares this rectangle to the specified rectangle.
*
* @param other the other rectangle
* @return {@code true} if this rectangle equals {@code other};
* {@code false} otherwise
*/
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (other == null) return false;
if (other.getClass() != this.getClass()) return false;
RectHV that = (RectHV) other;
if (this.xmin != that.xmin) return false;
if (this.ymin != that.ymin) return false;
if (this.xmax != that.xmax) return false;
if (this.ymax != that.ymax) return false;
return true;
}
/**
* Returns an integer hash code for this rectangle.
* @return an integer hash code for this rectangle
*/
@Override
public int hashCode() {
int hash1 = ((Double) xmin).hashCode();
int hash2 = ((Double) ymin).hashCode();
int hash3 = ((Double) xmax).hashCode();
int hash4 = ((Double) ymax).hashCode();
return 31*(31*(31*hash1 + hash2) + hash3) + hash4;
}
/**
* Returns a string representation of this rectangle.
*
* @return a string representation of this rectangle, using the format
* {@code [xmin, xmax] x [ymin, ymax]}
*/
@Override
public String toString() {
return "[" + xmin + ", " + xmax + "] x [" + ymin + ", " + ymax + "]";
}
/**
* Draws this rectangle to standard draw.
*/
public void draw() {
StdDraw.line(xmin, ymin, xmax, ymin);
StdDraw.line(xmax, ymin, xmax, ymax);
StdDraw.line(xmax, ymax, xmin, ymax);
StdDraw.line(xmin, ymax, xmin, ymin);
}
}
/******************************************************************************
* Copyright 2002-2016, Robert Sedgewick and Kevin Wayne.
*
* This file is part of algs4.jar, which accompanies the textbook
*
* Algorithms, 4th edition by Robert Sedgewick and Kevin Wayne,
* Addison-Wesley Professional, 2011, ISBN 0-321-57351-X.
* http://algs4.cs.princeton.edu
*
*
* algs4.jar is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* algs4.jar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with algs4.jar. If not, see http://www.gnu.org/licenses.
******************************************************************************/