CS 256 - Tree Problems

  1. Write a function count_nodes in our Binary Tree class that returns the number of nodes in a binary tree.
  2. Write the postorder method for our binary tree.
  3. Write the inorder method for our binary tree.
  4. Self Check p 314; 2, 3