Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Binary Heap Binary Search Tree
Consider a binary search tree given below.
What is the pre-order traversal of binary search tree after node 14 is deleted?
1
16,10, 7, 13, 11, 20, 18, 25, 22
2
7, 10, 11, 13, 16, 18, 20, 22, 25
3
16, 7, 10, 13, 11, 18, 22, 20, 25
4
25, 20, 22, 18, 11, 13, 10, 16, 7