Session 06 Flashcards

1
Q

Binary Tree ?

A

A hierarchical data structure in which each node has at most two children.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Applications of Binary Trees?

A
  • Expression trees
  • Huffman coding trees
  • Binary search trees
  • Priority Queue
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Generic tree (N-ary) ?

A

Each node can have any number of childrens

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Threaded Binary Tree (Stack or Queue less) ?

A

Binary tree that don’t need both stack or queue for traversal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Classifcation of threaded binary tree ?

A
  • Left-threaded BT
  • Right-threaded BT
  • Fully-threaded BT (simply threaded)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Types of Threaded Binary trees ?

A
  • Pre order TBT
  • In Order TBT
  • Post Order TBT
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Expression trees ?

A

Binary tree where internal nodes are operators and leaves are operands.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly