Sample Data Structures Questions
Chapter 10
Trees

Data Structures and Other Objects Using C++
by Michael Main and Walter Savitch
Second Edition ISBN 0-201-70297-5, Softcover, 816 pages, 2000


The Purpose of These Questions

These are typical exam questions from Chapter 10 of the textbook. These exact questions might not be on your exam, but if you research and find the right answers to these questions, that should be good preparation for a real exam. (It's also possible that some of this material was not covered in your class.) At the moment there are 20 short answer questions and 20 multiple choice questions in this file.

Short Answers

    Short Answers
    Section 10.1
    Introduction
    to Trees

  1. Here is a small binary tree:
           14
          /  \
         2    11
        / \   / \
       1  3  10  30
             /  /            
            7  40
    
    Circle all the leaves. Put a square box around the root. Draw a star around each ancestor of the node that contains 10. Put a big X through every descendant of the node the contains 10.

  2. Draw a full binary tree with at least 6 nodes.

    Short Answers
    Section 10.2
    Tree
    Representations

  3. Draw a complete binary tree with exactly six nodes. Put a different value in each node. Then draw an array with six components and show where each of the six node values would be placed in the array (using the usual array representation of a complete binary tree).

  4. Write the private member variables for a new node definition that could be used for a node in a tree where: (1) Each node contains int data, (2) Each node has up to four children, and (3) Each node also has a pointer to its parent. Store the pointers to the children in an array of four pointers.

    Short Answers
    Section 10.3
    A Toolkit for
    Binary Tree Nodes

  5. Draw a binary taxonomy tree that can be used for these four animals: Rabbit, Horse, Whale, Snake.

  6. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. Check as much of the precondition as possible. No recursion is needed.
    template <class Item>
    void subswap(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a non-empty binary tree.
    // Postcondition: The original left subtree has been moved and is now the right
    // subtree, and the original right subtree is now the left subtree.
    // Example original tree:            Example new tree:
    //          1                                 1
    //         / \                               / \
    //        2   3                             3   2
    //       / \                                   / \
    //      4   5                                 4   5
    

  7. template <class Item> Using the binary_tree_node from Section 10.3, write a recursive function to meet the following specification. Check as much of the precondition as possible.
    template <class Item>
    void flip(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a non-empty binary tree.
    // Postcondition: The tree is now the mirror image of its original value.
    // Example original tree:            Example new tree:
    //          1                                 1
    //         / \                               / \
    //        2   3                             3   2
    //       / \                                   / \
    //      4   5                                 5   4
    

    Short Answers
    Section 10.4
    Tree
    Traversals

  8. Here is a small binary tree:
           14
          /  \
         2    11
        / \   / \
       1  3  10  30
             /  /            
            7  40
    
    Write the order of the nodes visited in:
    A. An in-order traversal:
    B. A pre-order traversal:
    C. A post-order traversal:

  9. Using the binary_tree_node from Section 10.3, Write a recursive function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    void increase(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree.
    // Postcondition: Every node of the tree has had its data increased by one.
    

  10. Using the binary_tree_node from Section 10.3, write a recursive function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    size_t many_nodes(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree.
    // Postcondition: The return value is the number of nodes in the tree.
    // NOTES: The empty tree has 0 nodes, and a tree with just a root has
    // 1 node.
    

  11. Using the binary_tree_node from Section 10.3, write a recursive function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    int tree_depth(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree.
    // Postcondition: The return value is the depth of the binary tree.
    // NOTES: The empty tree has a depth of -1 and a tree with just a root
    // has a depth of 0.
    

  12. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    size_t count42(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree (but
    // NOT NECESSARILY a search tree).
    // Postcondition: The return value indicates how many times 42 appears
    // in the tree. NOTE: If the tree is empty, the function returns zero.
    

  13. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    bool has_42(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree (but
    // NOT NECESSARILY a search tree).
    // Postcondition: The return value indicates whether 42 appears somewhere
    // in the tree. NOTE: If the tree is empty, the function returns false.
    

  14. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    bool all_42(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree (but
    // NOT NECESSARILY a search tree).
    // Postcondition: The return value is true if every node in the tree
    // contains 42. NOTE: If the tree is empty, the function returns true.
    

  15. Using the binary_tree_node from Section 10.3, write a recursive function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    int sum_all(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary tree.
    // Postcondition: The return value is the sum of all the data in all the nodes.
    // NOTES: The return value for the empty tree is zero.
    

    Short Answers
    Section 10.5
    Binary Search
    Trees

  16. Suppose that we want to create a binary search tree where each node contains information of some data type called Item (which has a default constructor and a correct value semantics). What additional factor is required for the Item data type?

  17. Suppose that a binary search tree contains the number 42 at a node with two children. Write two or three clear sentences to describe the process required to delete the 42 from the tree.

  18. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. You do not need to check the precondition. Make the function as efficient as possible (do not visit nodes unnecessarily):
    template <class Item>
    size_t count42(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a binary SEARCH tree.
    // Postcondition: The return value indicates how many times 42 appears
    // in the tree.
    

  19. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. You do not need to check the precondition. Make the function as efficient as possible (do not visit nodes unnecessarily):
    template <class Item>
    int max(binary_tree_node<Item>* root_ptr)
    // Precondition: root_ptr is the root pointer of a nonempty binary SEARCH
    // tree.
    // Postcondition: The return value is the largest value in the tree.
    

  20. Using the binary_tree_node from Section 10.3, write a function to meet the following specification. You do not need to check the precondition.
    template <class Item>
    void insert_one_42(binary_tree_node<Item>*& root_ptr)
    // Precondition: root_ptr is the root pointer of a binary SEARCH tree.
    // Postcondition: One copy of the number 42 has been added to the binary
    // search tree.
    

Multiple Choice

    Multiple Choice
    Section 10.1
    Introduction
    to Trees
           14
          /  \
         2    11
        / \   / \
       1  3  10  30
             /  /            
            7  40
    
  1. There is a tree in the box at the top of this section. How many leaves does it have?
    • A. 2
    • B. 4
    • C. 6
    • D. 8
    • E. 9

  2. There is a tree in the box at the top of this section. How many of the nodes have at least one sibling?
    • A. 5
    • B. 6
    • C. 7
    • D. 8
    • E. 9

  3. There is a tree in the box at the top of this section. What is the value stored in the parent node of the node containing 30?
    • A. 10
    • B. 11
    • C. 14
    • D. 40
    • E. None of the above

  4. There is a tree in the box at the top of this section. How many descendants does the root have?
    • A. 0
    • B. 2
    • C. 4
    • D. 8

  5. There is a tree in the box at the top of this section. What is the depth of the tree?
    • A. 2
    • B. 3
    • C. 4
    • D. 8
    • E. 9

  6. There is a tree in the box at the top of this section. How many children does the root have?
    • A. 2
    • B. 4
    • C. 6
    • D. 8
    • E. 9

  7. Consider the binary tree in the box at the top of this section. Which statement is correct?
    • A. The tree is neither complete nor full.
    • B. The tree is complete but not full.
    • C. The tree is full but not complete.
    • D. The tree is both full and complete.

  8. What is the minimum number of nodes in a full binary tree with depth 3?
    • A. 3
    • B. 4
    • C. 8
    • D. 11
    • E. 15

  9. What is the minimum number of nodes in a complete binary tree with depth 3?
    • A. 3
    • B. 4
    • C. 8
    • D. 11
    • E. 15

  10. Select the one true statement.
    • A. Every binary tree is either complete or full.
    • B. Every complete binary tree is also a full binary tree.
    • C. Every full binary tree is also a complete binary tree.
    • D. No binary tree is both complete and full.

  11. Suppose T is a binary tree with 14 nodes. What is the minimum possible depth of T?
    • A. 0
    • B. 3
    • C. 4
    • D. 5

  12. Select the one FALSE statement about binary trees:
    • A. Every binary tree has at least one node.
    • B. Every non-empty tree has exactly one root node.
    • C. Every node has at most two children.
    • D. Every non-root node has exactly one parent.

    Multiple Choice
    Section 10.2
    Tree
    Representations

  13. Consider the binary_tree_node from Section 10.3. Which expression indicates that t represents an empty tree?
    • A. (t == NULL)
    • B. (t->data( ) == 0)
    • C. (t->data( ) == NULL)
    • D. ((t->left( ) == NULL) && (t->right( ) == NULL))

  14. Consider the node of a complete binary tree whose value is stored in data[i] for an array implementation. If this node has a right child, where will the right child's value be stored?
    • A. data[i+1]
    • B. data[i+2]
    • C. data[2*i + 1]
    • D. data[2*i + 2]

    Multiple Choice
    Section 10.3
    A Toolkit for
    Binary Tree Nodes

  15. How many recursive calls usually occur in the implementation of the tree_clear function for a binary tree?
    • A. 0
    • B. 1
    • C. 2

  16. Suppose that a binary taxonomy tree includes 8 animals. What is the minimum number of NONLEAF nodes in the tree?
    • A. 1
    • B. 3
    • C. 5
    • D. 7
    • E. 8

    Multiple Choice
    Section 10.4
    Tree
    Traversals
           14
          /  \
         2    11
        / \   / \
       1  3  10  30
             /  /            
            7  40
    

  17. There is a tree in the box at the top of this section. What is the order of nodes visited using a pre-order traversal?
    • A. 1 2 3 7 10 11 14 30 40
    • B. 1 2 3 14 7 10 11 40 30
    • C. 1 3 2 7 10 40 30 11 14
    • D. 14 2 1 3 11 10 7 30 40

  18. There is a tree in the box at the top of this section. What is the order of nodes visited using an in-order traversal?
    • A. 1 2 3 7 10 11 14 30 40
    • B. 1 2 3 14 7 10 11 40 30
    • C. 1 3 2 7 10 40 30 11 14
    • D. 14 2 1 3 11 10 7 30 40

  19. There is a tree in the box at the top of this section. What is the order of nodes visited using a post-order traversal?
    • A. 1 2 3 7 10 11 14 30 40
    • B. 1 2 3 14 7 10 11 40 30
    • C. 1 3 2 7 10 40 30 11 14
    • D. 14 2 1 3 11 10 7 30 40

    Multiple Choice
    Section 10.5
    Binary Search
    Trees

  20. Consider this binary search tree:
           14
          /  \
         2    16
        / \    
       1   5 
          /    
         4     
    
    Suppose we remove the root, replacing it with something from the left subtree. What will be the new root?
    • A. 1
    • B. 2
    • C. 4
    • D. 5
    • E. 16


Data Structures and Other Objects Using C++

Michael Main (main@colorado.edu)
and
Walter Savitch (wsavitch@ucsd.edu)

Thank you for visiting http://www.cs.colorado.edu/~main/questions/chap10q.html
Copyright © 2000 Addison-Wesley Computer and Engineering Publishing Group