Package com.zybooks.dsaj.tree


package com.zybooks.dsaj.tree
Code from the chapter "Trees"
  • Class
    Description
    An abstract base class providing some functionality of the BinaryTree interface.
    An abstract base class providing some functionality of the Tree interface.
    An interface for a binary tree, in which each node has at most two children.
    Concrete implementation of a binary tree using a node-based, linked structure.
    Nested static class for a binary tree node.
    Several applications of tree traversals.
     
    Tree<E>
    An interface for a tree where nodes can have an arbitrary number of children.