Binary search Tree is used as a kernel data structure. Consider the following data and build up a
Binary Search Tree
21, 18, 25, 12, 19, 16, 28, 35, 6
Answers
Answered by
2
Answer:
The Answer is:A binary tree is a type of data structure for storing data such as numbers in an organized way. Binary search trees allow binary search for fast lookup, addition and removal of data items, and can be used to implement dynamic sets and lookup tables
Explanation:
Similar questions