1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
/* BinaryTree.java
* =========================================================================
* This file is part of the GrInvIn project - http://www.grinvin.org
*
* Copyright (C) 2005-2008 Universiteit Gent
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* A copy of the GNU General Public License can be found in the file
* LICENSE.txt provided with the source distribution of this program (see
* the META-INF directory in the source jar). This license can also be
* found on the GNU website at http://www.gnu.org/licenses/gpl.html.
*
* If you did not receive a copy of the GNU General Public License along
* with this program, contact the lead developer, or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
package org.grinvin.conjecture.engine.apengine;
import java.util.Arrays;
/**
* This class represents a binary tree. It is implemented as an array with
* pointers to the children.
*/
public class BinaryTree implements Cloneable {
//
private static final int UNDEFINED = Integer.MAX_VALUE;
//
protected int[] contents;
//
private int[][] nodelist;
//
private int[] nodesonlevel;
//
protected int firstfreepos;
//
protected int unaryCount;
//
protected int binaryCount;
/**
* Create a new binary tree with {@code unaryOperators} unary operators and
* {@code binaryOperators} binary operators.
*/
public BinaryTree(int unaryOperators, int binaryOperators) {
contents = new int[(unaryOperators + (2 * binaryOperators) + 1) * 2];
nodelist = new int[unaryOperators + binaryOperators + 2][(unaryOperators + (2 * binaryOperators) + 1) * 2];
nodesonlevel = new int[unaryOperators + binaryOperators + 2];
firstfreepos = 2;
unaryCount = 0;
binaryCount = 0;
nodelist[0][nodesonlevel[0]] = 0;
nodesonlevel[0] = 1;
Arrays.fill(contents, UNDEFINED);
}
/**
* Create a new binary tree. This constructor is used by the {@link BinaryTree#clone} method.
*/
protected BinaryTree(int[] newcontents, int firstfreeposition, int unaryCount, int binaryCount) {
//TODO: nodelist, nodesonlevel
contents = new int[newcontents.length];
System.arraycopy(newcontents, 0, contents, 0, newcontents.length);
firstfreepos = firstfreeposition;
this.unaryCount = unaryCount;
this.binaryCount = binaryCount;
}
//
public BinaryTree clone() {
return new BinaryTree(contents, firstfreepos, unaryCount, binaryCount);
}
//
public String toString() {
return toString(0);
}
//
protected String toString(int parent) {
StringBuilder result = new StringBuilder();
if (childCount(parent) > 0) {
result.append("( ");
for (int child : children(parent))
result.append(toString(child));
result.append(") ");
} else {
result.append("inv ");
}
return result.toString();
}
/**
* Return the number of children for the given node.
* @param parent the parent to start counting
* @return the number of children for the given node
*/
public final int childCount(int parent) {
if (hasLeftChild(parent)) {
if (hasRightChild(parent)) {
return 2;
} else {
return 1;
}
} else {
return 0;
}
}
/**
* Return the children of the given node.
* @param parent the parent of the children
* @return an array of size <= 2 containing the left and the right child
*/
public final int[] children(int parent) {
int left = leftChild(parent);
int right = rightChild(parent);
if (left != UNDEFINED) {
if (right != UNDEFINED) {
return new int[] { left, right };
} else {
return new int[] { left };
}
} else {
return new int[] {};
}
}
/**
* Does the node have a left child?
* @param parent parent node nummber
* @return {@code true} when {@code parent} has a left child or false otherwise
*/
public final boolean hasLeftChild(int parent) {
return leftChild(parent) != UNDEFINED;
}
/**
* Does the node have a right child?
* @param parent parent node nummber
* @return {@code true} when {@code parent} has a right child or false otherwise
*/
public final boolean hasRightChild(int parent) {
return rightChild(parent) != UNDEFINED;
}
/**
* Return the left child of the given node.
* @param parent the parent of the child
* @return the left child of the parent
*/
public final int leftChild(int parent) {
return contents[parent];
}
/**
* Return the right child of the given node.
* @param parent the parent of the child
* @return the right child of the parent
*/
public final int rightChild(int parent) {
return contents[parent + 1];
}
/**
* Return the current number of unary operators.
*/
public final int getUnaryCount() {
return unaryCount;
}
/**
* Return the current number of binary operators.
*/
public final int getBinaryCount() {
return binaryCount;
}
/**
* Return the current number of nodes, this equals: {@code binaryCount * 2 + unaryCount + 1}.
*/
public final int getNodeCount() {
return getBinaryCount() * 2 + getUnaryCount() + 1;
}
/**
* Return the number of nodes on the given depth.
* @param depth the depth of the tree
* @return the number of nodes on the given depth
*/
public final int nodesonlevel(int depth) {
return nodesonlevel[depth];
}
/**
* Add a new node on depth {@code depth} and position {@code pos}.
* @param depth the depth to add a new node
* @param pos the position to add a new node
* @return the parent of the new node, or {@code -1} when no node could be added
*/
public final int extendOn(int depth, int pos) {
//make sure the given pos is possible
if(nodesonlevel[depth-1] * 2 > pos) {
int parent = nodelist[depth-1][pos/2];
int child;
if (pos % 2 == 0) { //even
child = newLeftChild(parent);
} else { //odd
child = newRightChild(parent);
}
if (child != -1) {
nodelist[depth][nodesonlevel[depth]] = child;
nodesonlevel[depth]++;
return parent;
} else {
return -1;
}
} else {
return -1;
}
}
/**
* Remove the node on the given {@code depth} and {@code pos} with the given {@code parent}.
*/
public final void removeOn(int depth, int pos, int parent) {
if(pos == 0) {
removeLeftChild(parent);
} else { // pos == 1
removeRightChild(parent);
}
nodesonlevel[depth]--;
}
/**
* Create a new left child for the given node.
* @param parent the node that will get a new left child
* @return the new child
*/
public final int newLeftChild(int parent) {
int result = firstfreepos++;
firstfreepos++;
contents[parent] = result;
unaryCount++;
//binaryCount does not change
return result;
}
/**
* Create a new right child for the given node.
* @param parent the node that will get a new right child
* @return the new child or {@code -1} if there is no left child
*/
public final int newRightChild(int parent) {
if (!hasLeftChild(parent)) {
//throw new IllegalStateException("Cannot create right child: no left child exists.");
return -1;
} else {
int result = firstfreepos++;
firstfreepos++;
contents[parent + 1] = result;
unaryCount--;
binaryCount++;
return result;
}
}
/**
* Remove the left child of the given node.
* @param parent the parent of which the left child should be removed
*/
public final void removeLeftChild(int parent) {
contents[parent] = UNDEFINED;
firstfreepos -= 2;
unaryCount--;
//binaryCount does not change
}
/**
* Remove the right child of the given node.
* @param parent the parent of which the right child should be removed
*/
public final void removeRightChild(int parent) {
contents[parent + 1] = UNDEFINED;
firstfreepos -= 2;
unaryCount++;
binaryCount--;
}
}
|