complete tree with nodes ABCDEFG in level order
Given the above binary tree rooted at Node A, what is the order of nodes visited by a preorder search?

A, B, D, E, C, F, G
  • A, B, C, D, E, F, G
  • D, B, E, A, F, C, G
  • D, E, B, F, G, C, A
  • G, F, E, D, C, B, A

There are no hints for this question