-
Notifications
You must be signed in to change notification settings - Fork 0
/
PercolationStats.java
69 lines (54 loc) · 2.15 KB
/
PercolationStats.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
63
64
65
66
67
68
69
import edu.princeton.cs.algs4.StdOut;
import edu.princeton.cs.algs4.StdRandom;
import edu.princeton.cs.algs4.StdStats;
public class PercolationStats {
private double[] fractions;
// perform independent trials on an n-by-n grid
public PercolationStats(int n, int trials) {
if (n <= 0 || trials <= 0) {
throw new IllegalArgumentException("Invalid argument!");
}
int count = trials;
fractions = new double[trials];
while (count > 0) {
int x = 0;
Percolation percolation = new Percolation(n);
while (!percolation.percolates()) {
int row = StdRandom.uniformInt(1, n + 1);
int col = StdRandom.uniformInt(1, n + 1);
if (!percolation.isOpen(row, col)) {
percolation.open(row, col);
x++;
}
}
fractions[trials-count] = (double) x / (n * n);
count--;
}
}
// sample mean of percolation threshold
public double mean() {
return StdStats.mean(fractions);
}
// sample standard deviation of percolation threshold
public double stddev() {
return StdStats.stddev(fractions);
}
// low endpoint of 95% confidence interval
public double confidenceLo() {
return mean() - 1.96 * Math.sqrt(stddev()) / Math.sqrt(fractions.length);
}
// high endpoint of 95% confidence interval
public double confidenceHi() {
return mean() + 1.96 * Math.sqrt(stddev()) / Math.sqrt(fractions.length);
}
// test client (see below)
public static void main(String[] args) {
int n = Integer.parseInt(args[0]);
int trials = Integer.parseInt(args[1]);
PercolationStats percolationStats = new PercolationStats(n, trials);
double mean = percolationStats.mean();
StdOut.println("mean " + " = " + mean);
StdOut.println("stddev " + " = " + percolationStats.stddev());
StdOut.println("95% confidence interval" + " = " + "[" + percolationStats.confidenceLo() + ", " + percolationStats.confidenceHi() + "]");
}
}