505 views

1 Answer

0 0 votes
The resulting tree is like this :

                        2
                  2            3
               1            3
            1
Thus the level order traversal is   2,2,3,1,3,1.
Position:
Show:

Related questions

1 1 vote
0 0 answers
439
439 views
srishtipandey420 asked Jul 4, 2024
439 views
the answer to the question is given as option c but when I am solving, it is coming as option a. Is the answer wrong? Am I solving incorrectly? Please confirmThe characte...
0 0 votes
1 answers 1 answer
678
678 views
srishtipandey420 asked Jun 20, 2024
678 views
How can we solve this recurrance relation using master's theorem? T(n)=2 * T (n/2) + nlogn
0 0 votes
1 1 answer
594
594 views
Shankar Kakde asked Jan 25, 2019
594 views
The number of labelled subgraph possible for the graph given below are ________.
0 0 votes
0 0 answers
879
879 views
Harsh Kumar asked Dec 11, 2018
879 views
Can primary keys be updated using sql update query?Is such a query accepted/rejected?