-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPairLong.java
More file actions
45 lines (38 loc) · 1015 Bytes
/
Copy pathPairLong.java
File metadata and controls
45 lines (38 loc) · 1015 Bytes
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
package Miscellaneous;
import java.util.*;
public class PairLong implements Comparable<PairLong> {
final long u;
final long v;
public PairLong(long u, long v) {
this.u = u;
this.v = v;
}
public int hashCode() {
int hu = (int) (u ^ (u >>> 32));
int hv = (int) (v ^ (v >>> 32));
return 31 * hu + hv;
}
public boolean equals(Object o) {
PairLong other = (PairLong) o;
return u == other.u && v == other.v;
}
public int compareTo(PairLong other) {
return Long.compare(u, other.u) != 0 ? Long.compare(u, other.u) : Long.compare(v, other.v);
}
public String toString() {
return "[u=" + u + ", v=" + v + "]";
}
// Usage example
public static void main(String[] args) {
Set<PairLong> set1 = new TreeSet<>();
Set<PairLong> set2 = new HashSet<>();
for (int i = 0; i < 20; i++) {
PairLong p = new PairLong(i % 5, i % 10);
set1.add(p);
set2.add(p);
}
System.out.println(true == (set1.size() == set2.size()));
System.out.println(set1);
System.out.println(set2);
}
}