Searches the tree for the element with the given key and returns the associated value.
key to find in a tree.
indicator if the element with the given key has been found in the map.
copy of the value associated with the key, if found, ValueType.init otherwise.
Complexity: CPU: O(degree * log_degree(n)) Memory:O(log_degree(n))
See Implementation
Searches the tree for the element with the given key and returns the associated value.