Searches the tree for the element with the given key and returns the pointer to the associated value.
key to find in a tree.
pointer to the value associated with the key, if found, null 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 pointer to the associated value.