Session 06 Flashcards
1
Q
Binary Tree ?
A
A hierarchical data structure in which each node has at most two children.
2
Q
Types of binary tree?
A
- Strict Binary Tree :
each node has either exactly two children or no children. - Full Binary Tree :
each node has exactly two children, and all leaf nodes are at the same level. - Complete Binary Tree :
1. All levels are completely filled possibly except the last level.
2. Last level is filled from left to right without any gaps.
3
Q
Applications of Binary Trees?
A
- Expression trees
- Huffman coding trees
- Binary search trees
- Priority Queue
4
Q
Classifying the tree traversals?
A
- Preorder (DLR) : Process the current n, process left subtree, then process the right subtree.
- In Order (LDR) : Process the left subtree, process the current node data, and then process the right subtree.
- Post Order (LRD) : Process left subtree, process right subtree and then process the current node data
4
Q
Generic tree (N-ary) ?
A
Each node can have any number of childrens
5
Q
Threaded Binary Tree (Stack or Queue less) ?
A
Binary tree that don’t need both stack or queue for traversal.
6
Q
Classifcation of threaded binary tree ?
A
- Left-threaded BT
- Right-threaded BT
- Fully-threaded BT (simply threaded)
7
Q
Types of Threaded Binary trees ?
A
- Pre order TBT
- In Order TBT
- Post Order TBT
8
Q
Expression trees ?
A
Binary tree where internal nodes are operators and leaves are operands.
9
Q
A