Data Structures

The concept in which a method of visiting all nodes of a tree by processing the left subtree, then the node, then the right subtree is best known as which of these terms?

Correct answer

D. In-order traversal

Explanation

In-order traversal refers to a method of visiting all nodes of a tree by processing the left subtree, then the node, then the right subtree.