Respuesta :

Each internal node has exactly two children in a full binary search tree. In a tree with 100 leaf nodes, there are 99 interior nodes as well.

An ordered or sorted binary tree, also known as a binary search tree (BST) in computer science, is a rooted binary tree data structure in which each internal node's key is larger than all the keys in its left subtree and less than all the keys in its right subtree. The binary search tree's height directly relates to how time-consuming its operations are.

Binary search trees enable binary search for quick item searching, addition, and removal. Since each comparison in a BST skip around half of the remaining tree, the lookup efficiency is proportional to that of a binary logarithm. In the 1960s, it was developed to address the issue.

Learn more about binary search tree here:

https://brainly.com/question/13152677

#SPJ4