Trees and Graphs - trees, forests, binary trees, threaded binary trees, binary search trees, AVL trees, B-tree variants, graphs - Online Test
30:00
1. In a general tree, what is the maximum number of children a node can have?
2. Which data structure is a collection of disjoint sets?
3. What is the defining characteristic of a binary tree?
4. In a binary tree, what is the term for a node with no children?
5. Which traversal method visits nodes in the order: Root, Left, Right?
6. An in-order traversal of a binary tree visits nodes in what order?
7. Which traversal method visits nodes in the order: Left, Right, Root?
8. What is a 'forest' in the context of trees?
9. What is the maximum number of nodes in a binary tree of height 'h' (where height of root is 0)?
10. What is a 'threaded binary tree' designed to improve?
Test Results
0/0