-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathEx_1_3_35.java
More file actions
82 lines (69 loc) · 1.48 KB
/
Ex_1_3_35.java
File metadata and controls
82 lines (69 loc) · 1.48 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
package Ch_1_3;
import edu.princeton.cs.algs4.StdOut;
import edu.princeton.cs.algs4.StdRandom;
/**
* Created by HuGuodong on 2019/7/24.
*/
public class Ex_1_3_35 {
public static class _RandomQueue<Item> {
int N;
Item[] a;
public _RandomQueue() {
a = (Item[]) new Object[1];
}
private void resize(int cap) {
Item[] temp = (Item[]) new Object[cap];
for (int i = 0; i < N; i++) {
temp[i] = a[i];
}
a = temp;
}
public void enqueue(Item item) {
if (N == a.length) {
resize(2 * a.length);
}
a[N++] = item;
}
public Item dequeue() {
if (isEmpty()) {
return null;
}
if (N > 0 && N == a.length / 4) {
resize(a.length / 2);
}
int r = StdRandom.uniform(N);
Item item = a[r];
// delete
a[r] = a[N - 1];
a[N - 1] = null;
N--;
return item;
}
public Item sample() {
return a[StdRandom.uniform(N)];
}
public boolean isEmpty() {
return N == 0;
}
public int size() {
return N;
}
}
public static void main(String[] args) {
_RandomQueue<Integer> q = new _RandomQueue<>();
int N = 20;
for (int i = 0; i < N; i++) {
q.enqueue(i);
}
// sample
for (int i = 0; i < N; i++) {
StdOut.printf("%d ", q.sample());
}
StdOut.println();
// dequeue
while (!q.isEmpty()) {
StdOut.printf("%d ", q.dequeue());
}
StdOut.println();
}
}