/// <summary>
 /// Clear the hashtable.
 /// Time complexity: O(1).
 /// </summary>
 internal void Clear()
 {
     binarySearchTree.Clear();
 }