1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Nesterboy [21]
3 years ago
9

Using linked lists or a resizing array; develop a weighted quick-union implementation that removes the restriction on needing th

e number of objects ahead of time. Add a method newSite() to the API, which returns an int identifier.
Mathematics
1 answer:
balu736 [363]3 years ago
8 0

Answer:

Step-by-step explanation:

package net.qiguang.algorithms.C1_Fundamentals.S5_CaseStudyUnionFind;

import java.util.Random;

/**

* 1.5.20 Dynamic growth.

* Using linked lists or a resizing array, develop a weighted quick-union implementation that

* removes the restriction on needing the number of objects ahead of time. Add a method newSite()

* to the API, which returns an int identifier

*/

public class Exercise_1_5_20 {

public static class WeightedQuickUnionUF {

private int[] parent; // parent[i] = parent of i

private int[] size; // size[i] = number of sites in subtree rooted at i

private int count; // number of components

int N; // number of items

public WeightedQuickUnionUF() {

N = 0;

count = 0;

parent = new int[4];

size = new int[4];

}

private void resize(int n) {

int[] parentCopy = new int[n];

int[] sizeCopy = new int[n];

for (int i = 0; i < count; i++) {

parentCopy[i] = parent[i];

sizeCopy[i] = size[i];

}

parent = parentCopy;

size = sizeCopy;

}

public int newSite() {

N++;

if (N == parent.length) resize(N * 2);

parent[N - 1] = N - 1;

size[N - 1] = 1;

return N - 1;

}

public int count() {

return count;

}

public int find(int p) {

// Now with path compression

validate(p);

int root = p;

while (root != parent[root]) {

root = parent[root];

}

while (p != root) {

int next = parent[p];

parent[p] = root;

p = next;

}

return p;

}

// validate that p is a valid index

private void validate(int p) {

if (p < 0 || p >= N) {

throw new IndexOutOfBoundsException("index " + p + " is not between 0 and " + (N - 1));

}

}

public boolean connected(int p, int q) {

return find(p) == find(q);

}

public void union(int p, int q) {

int rootP = find(p);

int rootQ = find(q);

if (rootP == rootQ) {

return;

}

// make smaller root point to larger one

if (size[rootP] < size[rootQ]) {

parent[rootP] = rootQ;

size[rootQ] += size[rootP];

} else {

parent[rootQ] = rootP;

size[rootP] += size[rootQ];

}

count--;

}

}

public static void main(String[] args) {

WeightedQuickUnionUF uf = new WeightedQuickUnionUF();

Random r = new Random();

for (int i = 0; i < 20; i++) {

System.out.printf("\n%2d", uf.newSite());

int p = r.nextInt(i+1);

int q = r.nextInt(i+1);

if (uf.connected(p, q)) continue;

uf.union(p, q);

System.out.printf("%5d-%d", p, q);

uf.union(r.nextInt(i+1), r.nextInt(i+1));

}

}

}

You might be interested in
A geometric sequence is shown on the graph below. What is the formula for the nth term of the sequence?
larisa [96]

Answer:

\boxed{u_n=40*(\frac{1}{2} )^{n-1})}\\

Step-by-step explanation:

u_1=40\\\\u_2=20=u_1*(\frac{1}{2} )^{2-1}\\\\u_3=10=u_1*(\frac{1}{2} )^{3-1}\\\\u_4=5=u_1*(\frac{1}{2} )^{4-1}\\\\u_5=2.5=u_1*(\frac{1}{2} )^{5-1}\\\\\\\boxed{u_n=40*(\frac{1}{2} )^{n-1})}\\

4 0
3 years ago
Describe what happens in the algebraic solution of a system of equations whose graphs are parallel lines.
kumpel [21]

There is no solution to the system.

5 0
4 years ago
Read 2 more answers
Tarzan looked at 54 web sites in 6 hours. At that rate, how many web
astra-53 [7]

Answer:

He would look at 3 sites in 20 minutes.

Step-by-step explanation:

5 0
3 years ago
Read 2 more answers
Evaluate 0.3^3<br> A. 0.0027<br> B. 0.027<br> C. 0.9<br> D. 2.7
Galina-37 [17]
Hi

0.3³
0.3 * 0.3 * 0.3
= 0.027

The answer is B 
4 0
4 years ago
Justine is a wedding coordinator. She is selecting the menu options for the reception
hichkok12 [17]
What does she want on the menu
4 0
3 years ago
Other questions:
  • Sherwin manages Delaroy County Zoo. The following table shows a probability model for the number of visitors on a weekday.
    15·2 answers
  • Find the slope of the line
    13·2 answers
  • What is the distance from point Y to wx in the figure below?
    10·2 answers
  • Andrew is evaluating his current financial position by totaling his monthly cash inflows and outflows. His cash inflows each mon
    15·1 answer
  • Michael is making windmills for a class project. The colors he has to choose
    15·2 answers
  • Bethany is making a rectangular fenced-in area for her rabbit in her yard. The area measures 4 3 4 feet wide by 2 yards long. Wh
    15·1 answer
  • Solve the following system for x and y: 2x + 3y = 6<br> 2x + y = -2
    5·2 answers
  • 4. A sphere with a diameter of 16 mm has the same surface area as the total surface area of a right cylinder with the base diame
    10·1 answer
  • PLS HURRY HAVE 10MIN. LEFT
    12·1 answer
  • Which of the following items is shaped MOST LIKE the Moon?
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!