Data Structures

Select the correct name for: a binary tree in which each node's left subtree contains smaller values and right subtree contains larger values.

Correct answer

C. Binary search tree

Explanation

Binary search tree refers to a binary tree in which each node's left subtree contains smaller values and right subtree contains larger values.