recategorized by
10,205 views
30 30 votes

Level order traversal of a rooted tree can be done by starting from the root and performing

  1. preorder traversal

  2. in-order traversal

  3. depth first search

  4. breadth first search

3 Answers

8 8 votes
6 6 votes
option D is the correct answer

Level order traversal of the tree resembles the Breadth-first search of the graph

and also

one more important point regarding the LEVEL ORDER TRAVERSAL apart from the question asked is :

 level order traversal uses the queued data structure.
Answer:
Position:
Show:

Related questions

36 36 votes
3 answers 3 answers
9.6k
9.6k views
Kathleen asked Sep 18, 2014
9,586 views
The elements $32, 15, 20, 30, 12, 25, 16,$ are inserted one by one in the given order into a maxHeap. The resultant maxHeap is
30 30 votes
5 answers 5 answers
13.7k
13.7k views
Kathleen asked Sep 18, 2014
13,652 views
Given the following input $(4322, 1334, 1471, 9679, 1989, 6171, 6173, 4199)$ and the hash function $x$ mod $10$, which of the following statements are true?$9679, 1989, 4...
26 26 votes
4 answers 4 answers
11.0k
11.0k views
Kathleen asked Sep 18, 2014
10,988 views
The best data structure to check whether an arithmetic expression has balanced parentheses is aqueuestacktreelist
38 38 votes
6 answers 6 answers
29.5k
29.5k views
Kathleen asked Sep 18, 2014
29,454 views
The following numbers are inserted into an empty binary search tree in the given order: $10, 1, 3, 5, 15, 12, 16$. What is the height of the binary search tree (the heigh...