Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

NO COMPILER ERRORS! Complete the following functions using recursion public void removeBelowDepth(int k) { public void addZeroToSingles() { public void removeLeaves() { public void removeSingles()

NO COMPILER ERRORS!

Complete the following functions using recursion

 public void removeBelowDepth(int k) { public void addZeroToSingles() { public void removeLeaves() { public void removeSingles() { 

package algs32;

import algs13.Queue;

import stdlib.*;

/* ***********************************************************************

* A simple BST with int keys

*

* Recall that:

* Depth of root==0.

* Height of leaf==0.

* Size of empty tree==0.

* Height of empty tree=-1.

*

* TODO: complete the functions in this file.

*

* Restrictions:

* - DO NOT change the Node class.

* - DO NOT change the first line of any function: name, parameters, types.

* - you may add new functions, but don't delete anything

* - functions must be recursive, except printLeftI

* - no loops, except in printLeftI (you cannot use "while" "for" etc...)

* - each function must have exactly one recursive helper function, which you add

* - each function must be independent --- do not call any function other than the helper

* - no fields (variables declared outside of a function)

*************************************************************************/

public class MyIntSET {

private Node root;

private static class Node {

public final int key;

public Node left, right;

public Node(int key) { this.key = key; }

}

public void printLeftI () {

Node x = root;

while(x != null) {

StdOut.println(x.key);

x = x.left;

}

}

// the number of nodes in the tree

public int size() {

return sizeUtil(root);

}

private int sizeUtil(Node start) {

if(start == null) {

return 0;

} else {

return 1 + sizeUtil(start.left) + sizeUtil(start.right);

}

}

// Recall the definitions of height and depth.

// in the BST with level order traversal "41 21 61 11 31",

// node 41 has depth 0, height 2

// node 21 has depth 1, height 1

// node 61 has depth 1, height 0

// node 11 has depth 2, height 0

// node 31 has depth 2, height 0

// height of the whole tree is the height of the root

// the height of the tree

public int height() {

return heightUtil(root);

}

private int heightUtil(Node start) {

if(start == null) {

return -1;

} else if(start.left==null && start.right==null){

return 0;

} else {

int left = heightUtil(start.left);

int right = heightUtil(start.right);

return 1 + (left > right ? left : right);

}

}

// the number of nodes with odd keys

public int sizeOdd() {

return sizeOddUtil(root);

}

private int sizeOddUtil(Node start) {

int count = 0;

if(start == null) {

return 0;

}

if(start.key % 2==1){

count = 1;

}

return count + sizeOddUtil(start.left) + sizeOddUtil(start.right);

}

// The next three functions compute the size of the tree at depth k.

// It should be the case that for any given k,

//

// sizeAbove(k) + sizeAt(k) + sizeBelow(k) = size()

//

// The words "above" and "below" assume that the root is at the "top".

//

// Suppose we have with size N and height H (so max depth also H).

// For such a tree, we expect

//

// sizeAboveDepth (-1) = 0

// sizeAtDepth (-1) = 0

// sizeBelowDepth (-1) = N

//

// sizeAboveDepth (0) = 0

// sizeAtDepth (0) = 1

// sizeBelowDepth (0) = N-1

//

// sizeAboveDepth (H+1) = N

// sizeAtDepth (H+1) = 0

// sizeBelowDepth (H+1) = 0

//

// the number of nodes in the tree, at exactly depth k

// include node n if depth(n) == k

public int sizeAtDepth(int k) {

return sizeAtDepthUtil(root, 0, k);

}

private int sizeAtDepthUtil(Node start, int current, int depth) {

if (current > depth) {

return 0;

}

if (start == null) {

return 0;

}

if (current == depth) {

return 1;

}

return sizeAtDepthUtil(start.left, current + 1, depth) + sizeAtDepthUtil(start.right, current + 1, depth);

}

// the number of nodes in the tree, "above" depth k (not including k)

// include node n if depth(n) < k

public int sizeAboveDepth(int k) {

return sizeAboveDepthUtil(root, 0, k);

}

private int sizeAboveDepthUtil(Node start, int current, int depth) {

if(current >= depth) {

return 0;

}

if(start == null) {

return 0;

}

return 1 + sizeAboveDepthUtil(start.left, current + 1, depth) + sizeAboveDepthUtil(start.right, current + 1, depth);

}

// the number of nodes in the tree, "below" depth k (not including k)

// include node n if depth(n) > k

public int sizeBelowDepth(int k) {

return sizeBelowDepthUtil(root, 0, k);

}

private int sizeBelowDepthUtil(Node start, int current, int depth) {

if(start == null) {

return 0;

}

if(current <= depth) {

return sizeBelowDepthUtil(start.left, current + 1, depth) + sizeBelowDepthUtil(start.right, current + 1, depth);

}

return 1 + sizeBelowDepthUtil(start.left, current + 1, depth) + sizeBelowDepthUtil(start.right, current + 1, depth);

}

// tree is perfect if for every node, size of left == size of right

// hint: in the helper, return -1 if the tree is not perfect, otherwise return the size

public boolean isPerfectlyBalancedS() {

return isPerfectlyBalancedSUtil(root);

}

private boolean isPerfectlyBalancedSUtil(Node root) {

if(root == null) {

return true;

}

int sizeLeft = sizeUtil(root.left);

int sizeRight = sizeUtil(root.right);

return (sizeLeft == sizeRight) && isPerfectlyBalancedSUtil(root.left) && isPerfectlyBalancedSUtil(root.right);

}

// tree is perfect if for every node, height of left == height of right

// hint: in the helper, return -2 if the tree is not perfect, otherwise return the height

public boolean isPerfectlyBalancedH() {

return isPerfectlyBalancedHUtil(root);

}

private boolean isPerfectlyBalancedHUtil(Node root) {

if(root == null) {

return true;

}

int heightLeft = heightUtil(root.left);

int heightRight = heightUtil(root.right);

return (heightLeft == heightRight) && isPerfectlyBalancedHUtil(root.left) && isPerfectlyBalancedHUtil(root.right);

}

// tree is odd-perfect if for every node, #odd descendant on left == # odd descendants on right

// A node is odd if it has an odd key

// hint: in the helper, return -1 if the tree is not odd-perfect, otherwise return the odd size

public boolean isOddBalanced() {

return isOddBalancedHUtil(root);

}

private boolean isOddBalancedHUtil(Node root) {

if(root == null) {

return true;

}

int oddCountLeft = sizeOddUtil(root.left);

int oddCountRight = sizeOddUtil(root.right);

return (oddCountLeft == oddCountRight) && isOddBalancedHUtil(root.left) && isOddBalancedHUtil(root.right);

}

// tree is semi-perfect if every node is semi-perfect

// A node with 0 children is semi-perfect.

// A node with 1 child is NOT semi-perfect.

// A node with 2 children is semi-perfect if (size-of-larger-child <= size-of-smaller-child * 3)

// hint: in the helper, return -1 if the tree is not semi-perfect, otherwise return the size

public boolean isSemiBalanced() {

if(isSemiBalancedHelper(root) == size()) {

return true;

}

return false;

}

public int isSemiBalancedHelper(Node temp) {

if (temp == null) {

return 0;

} else if (temp.left == null && temp.right == null) {

return 1;

} else if ((temp.left == null && temp.right != null) || (temp.right == null && temp.left != null)) {

return 0;

} else {

int h1 = sizeUtil(temp.left);

int h2 = sizeUtil(temp.right);

if (h1 > h2) {

if (h1 <= 3 * h2) {

return 1 + isSemiBalancedHelper(temp.left) + isSemiBalancedHelper(temp.right);

} else {

return 0;

}

} else {

if (h2 <= 3 * h1) {

return 1 + isSemiBalancedHelper(temp.left) + isSemiBalancedHelper(temp.right);

} else {

return 0;

}

}

}

}

/*

* Mutator functions

* HINT: all of these are easier to write if the helper function returns Node, rather than void.

*/

// remove all subtrees with odd roots (if node is odd, remove it and its descendants)

// A node is odd if it has an odd key

// If the root is odd, then you should end up with the empty tree

public void removeOddSubtrees () {

root = removeOddSubtrees(root); }

public static Node removeOddSubtrees(Node n) {

if (n== null || n.key%2 == 1) return null;

n.left = removeOddSubtrees(n.left);

n.right = removeOddSubtrees(n.right);

return n;

}

// remove all subtrees below depth k from the original tree

public void removeBelowDepth(int k) {

// TODO

}

// add a child with key=0 to all nodes that have only one child

// (you do not need to retain symmetric order or uniqueness of keys, obviously)

public void addZeroToSingles() {

// TODO

}

// remove all leaves from the original tree

// if you start with "41", then the result is the empty tree.

// if you start with "41 21 61", then the result is the tree "41"

// if you start with the BST "41 21 11 1", then the result is the tree "41 21 11"

// if you start with the BST "41 21 61 11", then the result is the tree "41 21"

// Hint: This requires that you check for "leafiness" before the recursive calls

public void removeLeaves() {

// TODO

}

// remove all nodes that have only one child by "promoting" that child

// repeat this recursively as you go up, so the final result should have no nodes with only one child

// if you start with "41", the tree is unchanged.

// if you start with "41 21 61", the tree is unchanged.

// if you start with the BST "41 21 11 1", then the result is the tree "1"

// if you start with the BST "41 21 61 11", then the result is the tree "41 11 61"

// Hint: This requires that you check for "singleness" after the recursive calls

public void removeSingles() {

// TODO

}

/* ***************************************************************************

* Some methods to create and display trees

* DO NOT MODIFY THESE METHODS

*****************************************************************************/

// Add one element to a tree, in BST order

public void put(int key) { root = put(root, key); }

private static Node put(Node n, int key) {

if (n == null) return new Node(key);

if (key < n.key) n.left = put(n.left, key);

else if (key > n.key) n.right = put(n.right, key);

return n;

}

// Test for equality

public static boolean areEquals (MyIntSET a, MyIntSET b) { return areEquals(a.root, b.root); }

private static boolean areEquals (Node x, Node y) {

if (x == null) {

return (y == null);

} else {

return (y != null) && x.key == y.key && areEquals (x.left, y.left) && areEquals (x.right, y.right);

}

}

// Create a tree from a string

public static MyIntSET fromString (String ints) {

MyIntSET set = new MyIntSET ();

for (String s : ints.split (" "))

try { set.put (Integer.parseInt (s)); } catch (NumberFormatException e) {}

return set;

}

// Return the values of the tree in level order

public Iterable levelOrder() {

Queue keys = new Queue<>();

Queue queue = new Queue<>();

queue.enqueue(root);

while (!queue.isEmpty()) {

Node n = queue.dequeue();

if (n == null) continue;

keys.enqueue(n.key);

queue.enqueue(n.left);

queue.enqueue(n.right);

}

return keys;

}

// String representation of the tree

public String toString() {

StringBuilder sb = new StringBuilder();

for (int key: levelOrder())

sb.append (key + " ");

return sb.toString ();

}

// Graphical representation of the tree

public void toGraphviz(String filename) {

GraphvizBuilder gb = new GraphvizBuilder ();

toGraphviz (gb, null, root);

gb.toFileUndirected (filename, "ordering=\"out\"");

}

private static void toGraphviz (GraphvizBuilder gb, Node parent, Node n) {

if (n == null) { gb.addNullEdge (parent); return; }

gb.addLabeledNode (n, Integer.toString (n.key));

if (parent != null) gb.addEdge (parent, n);

toGraphviz (gb, n, n.left);

toGraphviz (gb, n, n.right);

}

/* ***************************************************************************

* Test client

* You can modify any of these methods, if you wish

*****************************************************************************/

private static int exampleCount = 0;

private static void show(MyIntSET set, String filename) {

set.toGraphviz ("x" + exampleCount + "-" + filename + ".png");

exampleCount++;

}

private static void runOn(String s) {

MyIntSET set = MyIntSET.fromString(s);

StdOut.println ("###############################################################");

StdOut.format ("tree: %s ", set); show(set, "original");

StdOut.format ("size() = %d ", set.size());

StdOut.format ("height() = %d ", set.height());

StdOut.format ("sizeOdd() = %d ", set.sizeOdd());

StdOut.format ("sizeAtDepth(2) = %d ", set.sizeAtDepth(2));

StdOut.format ("sizeAboveDepth(2) = %d ", set.sizeAboveDepth(2));

StdOut.format ("sizeBelowDepth(2) = %d ", set.sizeBelowDepth(2));

StdOut.format ("isPerfectlyBalancedS() = %b ", set.isPerfectlyBalancedS());

StdOut.format ("isPerfectlyBalancedH() = %b ", set.isPerfectlyBalancedH());

StdOut.format ("isOddBalanced() = %b ", set.isOddBalanced());

StdOut.format ("isSemiBalanced() = %b ", set.isSemiBalanced());

set = MyIntSET.fromString(s); set.removeOddSubtrees(); StdOut.format ("removeOddSubtrees() %s ", set); show(set, "removeOddSubtrees");

set = MyIntSET.fromString(s); set.removeBelowDepth(2); StdOut.format ("removeBelowDepth(2) %s ", set); show(set, "removeBelowDepth2");

set = MyIntSET.fromString(s); set.removeLeaves(); StdOut.format ("removeLeaves() %s ", set); show(set, "removeLeaves");

set = MyIntSET.fromString(s); set.removeSingles(); StdOut.format ("removeSingles() %s ", set); show(set, "removeSingles");

set = MyIntSET.fromString(s); set.addZeroToSingles(); StdOut.format ("addZeroToSingles() %s ", set); show(set, "addZeroToSingles");

}

private static void run () {

//runOn ("41 21 61 11 31");

//runOn ("41 21 61 11 31 51 71 111");

//runOn ("101 41 21 61 11 31 51 71 111");

//runOn ("101 41 21 61 11 31 51 71 141 121 161 111 131 151 171 ");

//runOn ("101 40 20 61 11 31 51 71 140 120 161 111 131 151 171 ");

//runOn ("90 30 100 10 81 20 40 60 50 70 62 63 64");

//runOn ("40 20 61 10 30 50 70");

//runOn ("41 21 61 11 30 51 70");

//runOn ("");

//runOn ("1");

//runOn ("90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testSize (5, "41 21 61 11 31");

testSize (8, "41 21 61 11 31 51 71 111");

testSize (9, "101 41 21 61 11 31 51 71 111");

testSize (15, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testSize (11, "101 41 21 61 11 31 51 71 141 121 161");

testSize (9, "101 41 21 61 11 31 51 71 141");

testSize (15, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testSize (13, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testSize (7, "40 20 61 10 30 50 70");

testSize (7, "41 21 61 11 30 51 70");

testSize (0, "");

testSize (1, "1");

testSize (35, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testHeight (2, "41 21 61 11 31");

testHeight (3, "41 21 61 11 31 51 71 111");

testHeight (3, "101 41 21 61 11 31 51 71 111");

testHeight (3, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testHeight (3, "101 41 21 61 11 31 51 71 141 121 161");

testHeight (3, "101 41 21 61 11 31 51 71 141");

testHeight (3, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testHeight (8, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testHeight (2, "40 20 61 10 30 50 70");

testHeight (2, "41 21 61 11 30 51 70");

testHeight (-1, "");

testHeight (0, "1");

testHeight (5, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testSizeOdd (5, "41 21 61 11 31");

testSizeOdd (8, "41 21 61 11 31 51 71 111");

testSizeOdd (9, "101 41 21 61 11 31 51 71 111");

testSizeOdd (15, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testSizeOdd (11, "101 41 21 61 11 31 51 71 141 121 161");

testSizeOdd (9, "101 41 21 61 11 31 51 71 141");

testSizeOdd (11, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testSizeOdd (2, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testSizeOdd (1, "40 20 61 10 30 50 70");

testSizeOdd (5, "41 21 61 11 30 51 70");

testSizeOdd (0, "");

testSizeOdd (1, "1");

testSizeOdd (0, "2");

testSizeOdd (11, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testSizeAtDepth (2, 2, "41 21 61 11 31");

testSizeAtDepth (4, 2, "41 21 61 11 31 51 71 111");

testSizeAtDepth (2, 2, "101 41 21 61 11 31 51 71 111");

testSizeAtDepth (8, 3, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testSizeAtDepth (0, 4, "101 41 21 61 11 31 51 71 141 121 161");

testSizeAtDepth (2, 2, "101 41 21 61 11 31 51 71 141");

testSizeAtDepth (4, 2, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testSizeAtDepth (2, 3, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testSizeAtDepth (4, 2, "40 20 61 10 30 50 70");

testSizeAtDepth (2, 1, "41 21 61 11 30 51 70");

testSizeAtDepth (0, 2, "");

testSizeAtDepth (0, 2, "1");

testSizeAtDepth (4, 5, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testSizeAboveDepth (3, 2, "41 21 61 11 31");

testSizeAboveDepth (3, 2, "41 21 61 11 31 51 71 111");

testSizeAboveDepth (3, 2, "101 41 21 61 11 31 51 71 111");

testSizeAboveDepth (7, 3, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testSizeAboveDepth (11, 4, "101 41 21 61 11 31 51 71 141 121 161");

testSizeAboveDepth (3, 2, "101 41 21 61 11 31 51 71 141");

testSizeAboveDepth (3, 2, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testSizeAboveDepth (5, 3, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testSizeAboveDepth (3, 2, "40 20 61 10 30 50 70");

testSizeAboveDepth (1, 1, "41 21 61 11 30 51 70");

testSizeAboveDepth (0, 2, "");

testSizeAboveDepth (1, 2, "1");

testSizeAboveDepth (31, 5, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testSizeBelowDepth (0, 2, "41 21 61 11 31");

testSizeBelowDepth (1, 2, "41 21 61 11 31 51 71 111");

testSizeBelowDepth (4, 2, "101 41 21 61 11 31 51 71 111");

testSizeBelowDepth (0, 3, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testSizeBelowDepth (0, 4, "101 41 21 61 11 31 51 71 141 121 161");

testSizeBelowDepth (4, 2, "101 41 21 61 11 31 51 71 141");

testSizeBelowDepth (8, 2, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testSizeBelowDepth (6, 3, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testSizeBelowDepth (0, 2, "40 20 61 10 30 50 70");

testSizeBelowDepth (4, 1, "41 21 61 11 30 51 70");

testSizeBelowDepth (0, 2, "");

testSizeBelowDepth (0, 2, "1");

testSizeBelowDepth (0, 5, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testIsPerfectlyBalancedS (false, "41 21 61 11 31");

testIsPerfectlyBalancedS (false, "41 21 61 11 31 51 71 111");

testIsPerfectlyBalancedS (false, "101 41 21 61 11 31 51 71 111");

testIsPerfectlyBalancedS (true, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testIsPerfectlyBalancedS (false, "101 41 21 61 11 31 51 71 141 121 161");

testIsPerfectlyBalancedS (false, "101 41 21 61 11 31 51 71 141");

testIsPerfectlyBalancedS (true, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testIsPerfectlyBalancedS (false, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testIsPerfectlyBalancedS (true, "40 20 61 10 30 50 70");

testIsPerfectlyBalancedS (true, "41 21 61 11 30 51 70");

testIsPerfectlyBalancedS (true, "");

testIsPerfectlyBalancedS (true, "1");

testIsPerfectlyBalancedS (false, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testIsPerfectlyBalancedH (false, "41 21 61 11 31");

testIsPerfectlyBalancedH (false, "41 21 61 11 31 51 71 111");

testIsPerfectlyBalancedH (false, "101 41 21 61 11 31 51 71 111");

testIsPerfectlyBalancedH (true, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testIsPerfectlyBalancedH (false, "101 41 21 61 11 31 51 71 141 121 161");

testIsPerfectlyBalancedH (false, "101 41 21 61 11 31 51 71 141");

testIsPerfectlyBalancedH (true, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testIsPerfectlyBalancedH (false, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testIsPerfectlyBalancedH (true, "40 20 61 10 30 50 70");

testIsPerfectlyBalancedH (true, "41 21 61 11 30 51 70");

testIsPerfectlyBalancedH (true, "");

testIsPerfectlyBalancedH (true, "1");

testIsPerfectlyBalancedH (false, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testIsOddBalanced (false, "41 21 61 11 31");

testIsOddBalanced (false, "41 21 61 11 31 51 71 111");

testIsOddBalanced (false, "101 41 21 61 11 31 51 71 111");

testIsOddBalanced (true, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testIsOddBalanced (false, "101 41 21 61 11 31 51 71 141 121 161");

testIsOddBalanced (false, "101 41 21 61 11 31 51 71 141");

testIsOddBalanced (false, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testIsOddBalanced (false, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testIsOddBalanced (false, "40 20 61 10 30 50 70");

testIsOddBalanced (false, "41 21 61 11 30 51 70");

testIsOddBalanced (true, "");

testIsOddBalanced (true, "1");

testIsOddBalanced (false, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testIsSemiBalanced (true, "41 21 61 11 31");

testIsSemiBalanced (false, "41 21 61 11 31 51 71 111");

testIsSemiBalanced (false, "101 41 21 61 11 31 51 71 111");

testIsSemiBalanced (true, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testIsSemiBalanced (true, "101 41 21 61 11 31 51 71 141 121 161");

testIsSemiBalanced (false, "101 41 21 61 11 31 51 71 141");

testIsSemiBalanced (true, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testIsSemiBalanced (false, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testIsSemiBalanced (true, "40 20 61 10 30 50 70");

testIsSemiBalanced (true, "41 21 61 11 30 51 70");

testIsSemiBalanced (true, "");

testIsSemiBalanced (true, "1");

testIsSemiBalanced (true, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testRemoveOddSubtrees ("", "41 21 61 11 31");

testRemoveOddSubtrees ("", "101 41 21 61 11 31 51 71 141");

testRemoveOddSubtrees ("100 40 140 20 120", "100 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testRemoveOddSubtrees ("90 30 100 10 20", "90 30 100 10 81 20 40 60 50 70 62 63 64");

testRemoveOddSubtrees ("40 20 10 30", "40 20 61 10 30 50 70");

testRemoveOddSubtrees ("", "41 21 61 11 30 51 70");

testRemoveOddSubtrees ("", "");

testRemoveOddSubtrees ("", "1");

testRemoveOddSubtrees ("0", "0");

testRemoveOddSubtrees ("90 30 100 10 80 20 40 12 60 62", "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testRemoveBelowDepth ("41 21 61 11 31", 2, "41 21 61 11 31");

testRemoveBelowDepth ("41 21 61 11 31 51 71", 2, "41 21 61 11 31 51 71 111");

testRemoveBelowDepth ("101 41 111 21 61", 2, "101 41 21 61 11 31 51 71 111");

testRemoveBelowDepth ("101 41 141 21 61 121 161", 2, "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testRemoveBelowDepth ("101 41 141 21 61 121 161 11 31 51 71", 4, "101 41 21 61 11 31 51 71 141 121 161");

testRemoveBelowDepth ("101 41 141 21 61", 2, "101 41 21 61 11 31 51 71 141");

testRemoveBelowDepth ("101 40 140 20 61 120 161", 2, "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testRemoveBelowDepth ("90 30 100 10 81 20 40", 3, "90 30 100 10 81 20 40 60 50 70 62 63 64");

testRemoveBelowDepth ("40 20 61 10 30 50 70", 2, "40 20 61 10 30 50 70");

testRemoveBelowDepth ("41 21 61", 1, "41 21 61 11 30 51 70");

testRemoveBelowDepth ("", 2, "");

testRemoveBelowDepth ("1", 2, "1");

testRemoveBelowDepth ("90 30 100 10 80 95 105 5 20 40 85 93 97 103 110", 3, "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testAddZeroToSingles ("41 21 61 11 0 ", "41 21 61 11");

testAddZeroToSingles ("41 21 61 11 0 51 71 ", "41 21 61 11 51 71");

testAddZeroToSingles ("90 30 100 10 81 0 20 40 0 0 60 50 70 62 0 0 63 0 64 ", "90 30 100 10 81 20 40 60 50 70 62 63 64");

testAddZeroToSingles ("40 20 61 10 30 50 70 ", "40 20 61 10 30 50 70");

testAddZeroToSingles ("", "");

testAddZeroToSingles ("1 ", "1");

testAddZeroToSingles ("90 30 100 10 80 95 105 5 20 40 85 93 97 103 110 2 6 12 21 35 60 82 86 92 94 96 98 102 104 106 111 34 36 45 62 ", "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testRemoveLeaves ("41 21", "41 21 61 11 31");

testRemoveLeaves ("41 21 61 71", "41 21 61 11 31 51 71 111");

testRemoveLeaves ("101 41 21 61", "101 41 21 61 11 31 51 71 111");

testRemoveLeaves ("101 41 141 21 61 121 161", "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testRemoveLeaves ("101 41 141 21 61", "101 41 21 61 11 31 51 71 141 121 161");

testRemoveLeaves ("101 41 21 61", "101 41 21 61 11 31 51 71 141");

testRemoveLeaves ("101 40 140 20 61 120 161", "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testRemoveLeaves ("90 30 10 81 40 60 70 62 63", "90 30 100 10 81 20 40 60 50 70 62 63 64");

testRemoveLeaves ("40 20 61", "40 20 61 10 30 50 70");

testRemoveLeaves ("41 21 61", "41 21 61 11 30 51 70");

testRemoveLeaves ("", "");

testRemoveLeaves ("", "1");

testRemoveLeaves ("90 30 100 10 80 95 105 5 20 40 85 93 97 103 110 35 60", "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

testRemoveSingles ("101 41 141 21 61 121 161 11 31 51 71 111 131 151 171", "101 41 21 61 11 31 51 71 141 121 161 111 131 151 171");

testRemoveSingles ("101 41 141 21 61 121 161 11 31 51 71", "101 41 21 61 11 31 51 71 141 121 161");

testRemoveSingles ("101 41 141 21 61 11 31 51 71", "101 41 21 61 11 31 51 71 141");

testRemoveSingles ("101 40 140 20 61 120 161 11 31 51 71 111 131 151 171", "101 40 20 61 11 31 51 71 140 120 161 111 131 151 171");

testRemoveSingles ("90 30 100 20 60 50 64", "90 30 100 10 81 20 40 60 50 70 62 63 64");

testRemoveSingles ("40 20 61 10 30 50 70", "40 20 61 10 30 50 70");

testRemoveSingles ("41 21 61 11 30 51 70", "41 21 61 11 30 51 70");

testRemoveSingles ("", "");

testRemoveSingles ("1", "1");

testRemoveSingles ("90 30 100 10 80 95 105 5 20 40 85 93 97 103 110 2 6 12 21 35 60 82 86 92 94 96 98 102 104 106 111 34 36 45 62", "90 30 100 10 80 20 40 60 5 85 35 95 105 2 6 110 103 104 102 93 97 96 82 86 12 21 45 62 106 111 92 94 98 34 36");

StdOut.println ("Finished Tests");

}

private static void testPrintLeftI () {

//Trace.drawStepsOfMethod ("printLeftI");

//Trace.drawSteps ();

//Trace.run ();

MyIntSET set1 = MyIntSET.fromString("41 21 61 11 31");

StdOut.format ("tree: %s ", set1);

set1.toGraphviz ("x.png");

set1.printLeftI ();

//MyIntSET set2 = MyIntSET.fromString ("41 21 61 11 31 51 71 111");

//set2.toGraphviz ("y.png");

}

public static void main(String[] args) {

//testPrintLeftI ();

run ();

}

private static void testSize (int expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

int actual = set.size ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed size(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed size(%s): Expecting (%d) Actual (%d) ", tree, expected, actual);

}

}

private static void testHeight (int expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

int actual = set.height ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed height(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed height(%s): Expecting (%d) Actual (%d) ", tree, expected, actual);

}

}

private static void testSizeOdd (int expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

int actual = set.sizeOdd ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed sizeOdd(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed sizeOdd(%s): Expecting (%d) Actual (%d) ", tree, expected, actual);

}

}

private static void testSizeAtDepth (int expected, int depth, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

int actual = set.sizeAtDepth (depth);

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed sizeAtDepth(%d,%s): Tree modified ", depth, tree);

}

if (expected != actual) {

StdOut.format ("Failed sizeAtDepth(%d,%s): Expecting (%d) Actual (%d) ", depth, tree, expected, actual);

}

}

private static void testSizeAboveDepth (int expected, int depth, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

int actual = set.sizeAboveDepth (depth);

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed sizeAboveDepth(%d,%s): Tree modified ", depth, tree);

}

if (expected != actual) {

StdOut.format ("Failed sizeAboveDepth(%d,%s): Expecting (%d) Actual (%d) ", depth, tree, expected, actual);

}

}

private static void testSizeBelowDepth (int expected, int depth, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

int actual = set.sizeBelowDepth (depth);

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed sizeBelowDepth(%d,%s): Tree modified ", depth, tree);

}

if (expected != actual) {

StdOut.format ("Failed sizeBelowDepth(%d,%s): Expecting (%d) Actual (%d) ", depth, tree, expected, actual);

}

}

private static void testIsPerfectlyBalancedS (boolean expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

boolean actual = set.isPerfectlyBalancedS ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed isPerfectlyBalancedS(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed isPerfectlyBalancedS(%s): Expecting (%b) Actual (%b) ", tree, expected, actual);

}

}

private static void testIsPerfectlyBalancedH (boolean expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

boolean actual = set.isPerfectlyBalancedH ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed isPerfectlyBalancedH(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed isPerfectlyBalancedH(%s): Expecting (%b) Actual (%b) ", tree, expected, actual);

}

}

private static void testIsOddBalanced (boolean expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

boolean actual = set.isOddBalanced ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed isOddBalanced(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed isOddBalanced(%s): Expecting (%b) Actual (%b) ", tree, expected, actual);

}

}

private static void testIsSemiBalanced (boolean expected, String tree) {

MyIntSET set = MyIntSET.fromString(tree);

boolean actual = set.isSemiBalanced ();

if (! areEquals (set, MyIntSET.fromString(tree))) {

StdOut.format ("Failed isSemiBalanced(%s): Tree modified ", tree);

}

if (expected != actual) {

StdOut.format ("Failed isSemiBalanced(%s): Expecting (%b) Actual (%b) ", tree, expected, actual);

}

}

private static void testRemoveOddSubtrees (String expected, String tree) {

MyIntSET actual = MyIntSET.fromString(tree);

actual.removeOddSubtrees ();

if (! areEquals (actual, MyIntSET.fromString(expected))) {

StdOut.format ("Failed removeOddSubtrees(%s): Expecting (%s) Actual (%s) ", tree, expected, actual);

StdOut.format ("See graphviz output on your Desktop ", tree, expected, actual);

show (actual, "actual");

show (MyIntSET.fromString(expected), "expected");

}

}

private static void testRemoveBelowDepth (String expected, int depth, String tree) {

MyIntSET actual = MyIntSET.fromString(tree);

actual.removeBelowDepth (depth);

if (! areEquals (actual, MyIntSET.fromString(expected))) {

StdOut.format ("Failed removeBelowDepth(%d,%s): Expecting (%s) Actual (%s) ", depth, tree, expected, actual);

StdOut.format ("See graphviz output on your Desktop ", tree, expected, actual);

show (actual, "actual");

show (MyIntSET.fromString(expected), "expected");

}

}

private static void testRemoveSingles (String expected, String tree) {

MyIntSET actual = MyIntSET.fromString(tree);

actual.removeSingles ();

if (! areEquals (actual, MyIntSET.fromString(expected))) {

StdOut.format ("Failed removeSingles(%s): Expecting (%s) Actual (%s) ", tree, expected, actual);

StdOut.format ("See graphviz output on your Desktop ", tree, expected, actual);

show (actual, "actual");

show (MyIntSET.fromString(expected), "expected");

}

}

private static void testRemoveLeaves(String expected, String tree) {

MyIntSET actual = MyIntSET.fromString(tree);

actual.removeLeaves();

if (! areEquals (actual, MyIntSET.fromString(expected))) {

StdOut.format ("Failed removeLeaves(%s): Expecting (%s) Actual (%s) ", tree, expected, actual);

StdOut.format ("See graphviz output on your Desktop ", tree, expected, actual);

show (actual, "actual");

show (MyIntSET.fromString(expected), "expected");

}

}

private static void testAddZeroToSingles(String expected, String tree) {

MyIntSET actual = MyIntSET.fromString(tree);

actual.addZeroToSingles ();

if (! expected.equals (actual.toString ())) {

StdOut.format ("Failed removeLeaves(%s): Expecting (%s) Actual (%s) ", tree, expected, actual);

StdOut.format ("See graphviz output on your Desktop ", tree, expected, actual);

show (actual, "actual");

show (MyIntSET.fromString(expected), "expected");

}

}

}

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

Advanced Database Systems For Integration Of Media And User Environments 98

Authors: Yahiko Kambayashi, Akifumi Makinouchi, Shunsuke Uemura, Katsumi Tanaka, Yoshifumi Masunaga

1st Edition

9810234368, 978-9810234362

More Books

Students also viewed these Databases questions

Question

2. Identify the purpose of your speech

Answered: 1 week ago