Computer Science, asked by nidhirao4042, 1 year ago

If l is the left node, m is the middle node and r is the right node of a binary tree, then an l-m-r traversal can be termed as:

Answers

Answered by Answers4u
1

If l is the left node, m is the middle node and r is the right node of a binary tree, then an l-m-r traversal can be termed as In Order.

The two other types of traversal in a binary tree are m-l-r traversal for pre order and l-r-m traversal for post order.

These are examples of tree traversals in binary search trees.

Answered by TheBestWriter
0

If l is the left node, m is the middle node and r

is the right node of a binary tree, then an l-m-r

traversal can be termed as In Order.

The two other types of traversal in a binary tree

are m-l-r traversal for pre order and l-r-m traversal

for post order.

These are examples of tree traversals in binary

search trees.

Similar questions