Computer Science, asked by slnchary8921, 1 year ago

Write a procedure to find the maximum and minimum elements of a Binary Search Tree (BST).

Answers

Answered by Shenron
0
Min: begin with root and move left until the node's left is not null
Max: begin with the route and move right until the node's write is not null
Similar questions