Deletes the element from the BTreeMap.
key of the element to delete.
true if the element was found and deleted, false otherwise.
Complexity: CPU: O(degree * log_degree(n)) Memory:O(log_degree(n))
See Implementation
Deletes the element from the BTreeMap.