DATA STRUCTURE Programming and Technical Programming Technical

A level order traversal in a binary tree requires which data structure?
a)stack b)Deque
c)Linked List d)DoublLinked list

Read Solution (Total 8)

DATA STRUCTURE Other Question

Which of these data structure allow elements to be added or removed at either end but not in the middle
a) linked lists b)Deque
c)stack d)Queue
Inorder traversal of the following tree
10
/
3 5
/ /
1 7 9 6

a)1 3 7 10 9 5 6
b)1 3 7 9 5 6 10
c)10 3 5 1 7 9 6
d)1 7 9 6 3 5 10