Final Review - INFS 519 Fall 2011

Here are a handful of questions which are similar to those on the actual final.

class BinNode<T> {
  BinNode left;
  BinNode right;
  T data;

  public BinNode(T data) {
    this.data = data;
  }

  // More stuff below
}
class BinTree<T> {
  BinNode<T> root;

  public BinTree() {
    root = null;
  }

}
Validate XHTML 1.0