Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This was the code given by the professor package algs15.perc; //import stdlib.*; import algs15.*; // Uncomment the import statements above. // You can test this

This was the code given by the professor

package algs15.perc;

//import stdlib.*;

import algs15.*;

// Uncomment the import statements above.

// You can test this using InteractivePercolationVisualizer and PercolationVisualizer

// All methods should make at most a constant number of calls to the UF data structure,

// except percolates(), which may make up to N calls to the UF data structure.

public class Percolation {

int N;

boolean[] open;

// tells me if the slot open[k] is open

// declare a UF object here

UF u;

// TODO: more fields to add here

public Percolation(int N) {

this.N = N;

this.open = new boolean[N*N];

// this.u = new CompressionUF(); of suitable size... n

// N^2 or N^2 +2 depending on what you do

// TODO: more to do here

}

// open site (row i, column j) if it is not already

public void open(int i, int j) {

open[i*N+j] = true;

// TODO: more to do here.

// union to the neighbors who are open

// neighbors of i,j (i+1,j), (i-1,j), (i,j+1), (i,j-1)

// but be careful of boundary cases

}

// is site (row i, column j) open?

public boolean isOpen(int i, int j) {

return open[i*N+j];

}

// is site (row i, column j) full?

public boolean isFull(int i, int j) {

// TODO

// is the slot not open

// opposite of isOpen

return !isOpen(i,j);

}

// does the system percolate?

public boolean percolates() {

// TODO

// N^2 +2: just check whether top is connected to bottom

// N^ 2:

// check for all in 0th row, whether there is any in last row

// who is connected.

// OR simplify with the idea of adding dummy top and botoom

return false;

}

}

// N^2..

// slots at the top: (0,0)... (o,N-1)

// slots at the bottom: (N-1,0,..N-1,N-1)

// j: loop through the slots at the top

// j: loops through

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Administration

Authors: Adam Jorgensen, Bradley Ball

1st Edition

111885926X, 9781118859261

More Books

Students also viewed these Databases questions