_________ is a type of data structure that stores elements in a sorted order and allows for efficient insertion and deletion operations.

  • Array
  • Binary Search Tree
  • Queue
  • Stack
A Binary Search Tree is a hierarchical data structure that stores elements in sorted order, making it efficient for searching, insertion, and deletion operations. It maintains the property that the left child of a node has a value less than the parent, and the right child has a value greater than the parent.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *