摘要: 1 public class PercolationStats { 2 3 private int N; 4 private int T; 5 private double[] results; 6 7 public PercolationStats(int N... 阅读全文
posted @ 2014-06-16 17:53 Phoebe815 阅读(709) 评论(0) 推荐(0) 编辑
摘要: 1 public class Percolation { 2 private boolean[] openSites; 3 private int gridN; 4 private WeightedQuickUnionUF UF; 5 private We... 阅读全文
posted @ 2014-06-16 17:50 Phoebe815 阅读(543) 评论(0) 推荐(0) 编辑