|
| 1 | +package BinarySearchTree; |
| 2 | + |
| 3 | +public class BST { |
| 4 | + |
| 5 | + private class Node { |
| 6 | + int data; |
| 7 | + Node left; |
| 8 | + Node right; |
| 9 | + } |
| 10 | + |
| 11 | + private Node root; |
| 12 | + |
| 13 | + public BST(int[] in) { |
| 14 | + |
| 15 | + this.root = construct(in, 0, in.length - 1); |
| 16 | + |
| 17 | + } |
| 18 | + |
| 19 | + private Node construct(int[] in, int ilo, int ihi) { |
| 20 | + |
| 21 | + if (ilo > ihi) |
| 22 | + return null; |
| 23 | + |
| 24 | + int mid = (ilo + ihi) / 2; |
| 25 | + |
| 26 | + Node nn = new Node(); |
| 27 | + nn.data = in[mid]; |
| 28 | + |
| 29 | + nn.left = construct(in, ilo, mid - 1); |
| 30 | + nn.right = construct(in, mid + 1, ihi); |
| 31 | + |
| 32 | + return nn; |
| 33 | + } |
| 34 | + |
| 35 | + public void display() { |
| 36 | + |
| 37 | + display(this.root); |
| 38 | + } |
| 39 | + |
| 40 | + private void display(Node node) { |
| 41 | + |
| 42 | + if (node == null) { |
| 43 | + return; |
| 44 | + } |
| 45 | + |
| 46 | + String str = ""; |
| 47 | + |
| 48 | + if (node.left != null) |
| 49 | + str += node.left.data; |
| 50 | + |
| 51 | + str += " ->" + node.data + "<- "; |
| 52 | + |
| 53 | + if (node.right != null) |
| 54 | + str += node.right.data; |
| 55 | + |
| 56 | + System.out.println(str); |
| 57 | + |
| 58 | + display(node.left); |
| 59 | + |
| 60 | + display(node.right); |
| 61 | + |
| 62 | + } |
| 63 | + |
| 64 | + public int size() { |
| 65 | + return size(this.root); |
| 66 | + } |
| 67 | + |
| 68 | + private int size(Node node) { |
| 69 | + |
| 70 | + if (node == null) |
| 71 | + return 0; |
| 72 | + |
| 73 | + int lsum = size(node.left); |
| 74 | + int rsum = size(node.right); |
| 75 | + |
| 76 | + return lsum + rsum + 1; |
| 77 | + } |
| 78 | + |
| 79 | + public int max() { |
| 80 | + return max(this.root); |
| 81 | + } |
| 82 | + |
| 83 | + private int max(Node node) { |
| 84 | + |
| 85 | + if (node == null) |
| 86 | + return Integer.MIN_VALUE; |
| 87 | + |
| 88 | + if (node.right != null) |
| 89 | + return max(node.right); |
| 90 | + else |
| 91 | + return node.data; |
| 92 | + } |
| 93 | + |
| 94 | + public int height() { |
| 95 | + return height(this.root); |
| 96 | + } |
| 97 | + |
| 98 | + private int height(Node node) { |
| 99 | + |
| 100 | + if (node == null) |
| 101 | + return -1; |
| 102 | + int lh, rh; |
| 103 | + |
| 104 | + lh = height(node.left); |
| 105 | + |
| 106 | + rh = height(node.right); |
| 107 | + |
| 108 | + return Math.max(lh, rh) + 1; |
| 109 | + } |
| 110 | + |
| 111 | + public boolean find(int item) { |
| 112 | + return find(this.root, item); |
| 113 | + } |
| 114 | + |
| 115 | + private boolean find(Node node, int item) { |
| 116 | + |
| 117 | + if (node == null) { |
| 118 | + return false; |
| 119 | + } |
| 120 | + if (item < node.data) |
| 121 | + return find(node.left, item); |
| 122 | + else if (item > node.data) |
| 123 | + return find(node.right, item); |
| 124 | + else |
| 125 | + return true; |
| 126 | + |
| 127 | + } |
| 128 | + |
| 129 | + public void printDesc() { |
| 130 | + printDesc(this.root); |
| 131 | + } |
| 132 | + |
| 133 | + private void printDesc(Node node) { |
| 134 | + |
| 135 | + if (node == null) |
| 136 | + return; |
| 137 | + printDesc(node.right); |
| 138 | + |
| 139 | + System.out.print(node.data + " "); |
| 140 | + printDesc(node.left); |
| 141 | + |
| 142 | + } |
| 143 | + |
| 144 | + public void printLowHi(int lo, int hi) { |
| 145 | + printLowHi(this.root, lo, hi); |
| 146 | + } |
| 147 | + |
| 148 | + private void printLowHi(Node node, int lo, int hi) { |
| 149 | + |
| 150 | + if (node == null) |
| 151 | + return; |
| 152 | + |
| 153 | + if (node.data >= hi) |
| 154 | + printLowHi(node.left, lo, hi); |
| 155 | + else if (node.data < lo) |
| 156 | + printLowHi(node.right, lo, hi); |
| 157 | + else { |
| 158 | + printLowHi(node.left, lo, hi); |
| 159 | + System.out.print(node.data + " "); |
| 160 | + printLowHi(node.right, lo, hi); |
| 161 | + } |
| 162 | + } |
| 163 | + |
| 164 | + class HeapMover { |
| 165 | + int sum; |
| 166 | + } |
| 167 | + |
| 168 | + public void replaceLarger() { |
| 169 | + |
| 170 | + replaceLarger(this.root, new HeapMover()); |
| 171 | + } |
| 172 | + |
| 173 | + private void replaceLarger(Node node, HeapMover mover) { |
| 174 | + |
| 175 | + if (node == null) |
| 176 | + return; |
| 177 | + |
| 178 | + replaceLarger(node.right, mover); |
| 179 | + int temp = node.data; |
| 180 | + node.data = mover.sum; |
| 181 | + mover.sum += temp; |
| 182 | + replaceLarger(node.left, mover); |
| 183 | + |
| 184 | + } |
| 185 | + |
| 186 | + public void addItem(int item) { |
| 187 | + addItem(this.root, item); |
| 188 | + } |
| 189 | + |
| 190 | + private void addItem(Node node, int item) { |
| 191 | + |
| 192 | + if (node.data > item) { |
| 193 | + if (node.left != null) |
| 194 | + addItem(node.left, item); |
| 195 | + else { |
| 196 | + Node nn = new Node(); |
| 197 | + nn.data = item; |
| 198 | + node.left = nn; |
| 199 | + } |
| 200 | + } else { |
| 201 | + if (node.right != null) |
| 202 | + addItem(node.right, item); |
| 203 | + else { |
| 204 | + Node nn = new Node(); |
| 205 | + nn.data = item; |
| 206 | + node.right = nn; |
| 207 | + } |
| 208 | + } |
| 209 | + } |
| 210 | + |
| 211 | + public void remove(int item) { |
| 212 | + |
| 213 | + remove(this.root, null, item); |
| 214 | + |
| 215 | + } |
| 216 | + |
| 217 | + private void remove(Node node, Node parent, int item) { |
| 218 | + if (node == null) { |
| 219 | + return; |
| 220 | + } |
| 221 | + if (node.data < item) { |
| 222 | + remove(node.right, node, item); |
| 223 | + } else if (node.data > item) { |
| 224 | + remove(node.left, node, item); |
| 225 | + } else { |
| 226 | + if (node.left == null && node.right == null) { |
| 227 | + |
| 228 | + if (parent.left == node) |
| 229 | + parent.left = null; |
| 230 | + else |
| 231 | + parent.right = null; |
| 232 | + |
| 233 | + } else if (node.left != null && node.right == null) { |
| 234 | + |
| 235 | + if (parent.left == node) |
| 236 | + parent.left = node.left; |
| 237 | + else |
| 238 | + parent.right = node.left; |
| 239 | + |
| 240 | + } else if (node.right != null && node.left == null) { |
| 241 | + |
| 242 | + if (parent.right == node) |
| 243 | + parent.right = node.right; |
| 244 | + else |
| 245 | + parent.left = node.right; |
| 246 | + |
| 247 | + } else { |
| 248 | + |
| 249 | + int temp = max(node.left); |
| 250 | + remove(node.left, node, temp); |
| 251 | + node.data = temp; |
| 252 | + |
| 253 | + } |
| 254 | + } |
| 255 | + |
| 256 | + } |
| 257 | + |
| 258 | +} |
0 commit comments