trees

Upload: raffi-sk

Post on 30-Oct-2015

275 views

Category:

Documents


0 download

DESCRIPTION

17

TRANSCRIPT

Sample Data Structures Questions

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:

2. 14

3. / \

4. 2 11

5. / \ / \

6. 1 3 10 30

7. / /

8. 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.

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

Short Answers Section 10.2 Tree Representations

10. 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).

11. 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

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

13. Using the binary_tree_node from page 465, write a function to meet the following specification. Check as much of the precondition as possible. No recursion is needed.

14. template

15. void subswap(binary_tree_node* root_ptr)

16. // Precondition: root_ptr is the root pointer of a non-empty binary tree.

17. // Postcondition: The original left subtree has been moved and is now the right

18. // subtree, and the original right subtree is now the left subtree.

19. // Example original tree: Example new tree:

20. // 1 1

21. // / \ / \

22. // 2 3 3 2

23. // / \ / \

24. // 4 5 4 5

25. template Using the binary_tree_node from page 465, write a recursive function to meet the following specification. Check as much of the precondition as possible.

26. template

27. void flip(binary_tree_node* root_ptr)

28. // Precondition: root_ptr is the root pointer of a non-empty binary tree.

29. // Postcondition: The tree is now the mirror image of its original value.

30. // Example original tree: Example new tree:

31. // 1 1

32. // / \ / \

33. // 2 3 3 2

34. // / \ / \

35. // 4 5 5 4

Short Answers Section 10.4 Tree Traversals

36. Here is a small binary tree:

37. 14

38. / \

39. 2 11

40. / \ / \

41. 1 3 10 30

42. / /

43. 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:

44. Using the binary_tree_node from page 465, Write a recursive function to meet the following specification. You do not need to check the precondition.

45. template

46. void increase(binary_tree_node* root_ptr)

47. // Precondition: root_ptr is the root pointer of a binary tree.

48. // Postcondition: Every node of the tree has had its data increased by one.

49. Using the binary_tree_node from page 465, write a recursive function to meet the following specification. You do not need to check the precondition.

50. template

51. size_t many_nodes(binary_tree_node* root_ptr)

52. // Precondition: root_ptr is the root pointer of a binary tree.

53. // Postcondition: The return value is the number of nodes in the tree.

54. // NOTES: The empty tree has 0 nodes, and a tree with just a root has

55. // 1 node.

56. Using the binary_tree_node from page 465, write a recursive function to meet the following specification. You do not need to check the precondition.

57. template

58. int tree_depth(binary_tree_node* root_ptr)

59. // Precondition: root_ptr is the root pointer of a binary tree.

60. // Postcondition: The return value is the depth of the binary tree.

61. // NOTES: The empty tree has a depth of -1 and a tree with just a root

62. // has a depth of 0.

63. Using the binary_tree_node from page 465, write a function to meet the following specification. You do not need to check the precondition.

64. template

65. size_t count42(binary_tree_node* root_ptr)

66. // Precondition: root_ptr is the root pointer of a binary tree (but

67. // NOT NECESSARILY a search tree).

68. // Postcondition: The return value indicates how many times 42 appears

69. // in the tree. NOTE: If the tree is empty, the function returns zero.

70. Using the binary_tree_node from page 465, write a function to meet the following specification. You do not need to check the precondition.

71. template

72. bool has_42(binary_tree_node* root_ptr)

73. // Precondition: root_ptr is the root pointer of a binary tree (but

74. // NOT NECESSARILY a search tree).

75. // Postcondition: The return value indicates whether 42 appears somewhere

76. // in the tree. NOTE: If the tree is empty, the function returns false.

77. Using the binary_tree_node from page 465, write a function to meet the following specification. You do not need to check the precondition.

78. template

79. bool all_42(binary_tree_node* root_ptr)

80. // Precondition: root_ptr is the root pointer of a binary tree (but

81. // NOT NECESSARILY a search tree).

82. // Postcondition: The return value is true if every node in the tree

83. // contains 42. NOTE: If the tree is empty, the function returns true.

84. Using the binary_tree_node from page 465, write a recursive function to meet the following specification. You do not need to check the precondition.

85. template

86. int sum_all(binary_tree_node* root_ptr)

87. // Precondition: root_ptr is the root pointer of a binary tree.

88. // Postcondition: The return value is the sum of all the data in all the nodes.

89. // NOTES: The return value for the empty tree is zero.

Short Answers Section 10.5 Binary Search Trees

90. 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?

91. 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.

92. Using the binary_tree_node from page 465, 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):

93. template

94. size_t count42(binary_tree_node* root_ptr)

95. // Precondition: root_ptr is the root pointer of a binary SEARCH tree.

96. // Postcondition: The return value indicates how many times 42 appears

97. // in the tree.

98. Using the binary_tree_node from page 465, 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):

99. template

100. int max(binary_tree_node* root_ptr)

101. // Precondition: root_ptr is the root pointer of a nonempty binary SEARCH

102. // tree.

103. // Postcondition: The return value is the largest value in the tree.

104. Using the binary_tree_node from page 465, write a function to meet the following specification. You do not need to check the precondition.

105. template

106. void insert_one_42(binary_tree_node*& root_ptr)

107. // Precondition: root_ptr is the root pointer of a binary SEARCH tree.

108. // Postcondition: One copy of the number 42 has been added to the binary

109. // 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 page 465. 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:

21. 14

22. / \

23. 2 16

24. / \

25. 1 5

26. /

27. 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 ([email protected]) and Walter Savitch ([email protected]) Thank you for visiting http://www.cs.colorado.edu/~main/questions/chap10q.html Copyright 2000 Addison-Wesley Computer and Engineering Publishing Group