Skip to content

Latest commit

 

History

History

find_maximum_value_binary_tree

Breadth First Traversal

Implement a search for max value in a binary tree.

Challenge

Algorithm input consists of a binary tree structure. Output is the maximum node value.

Solution

Whiteboard Images