Time to insert 107 elements: 0m30.180s*
Time to insert 107 elements: 0m25.048s*
* (When compiled with -O2 using g++, on a 2.3 GHz Intel Core i7 machine with 8G RAM)
-
Complexity of an insert: O(log2n) (amortized)
-
Complexity of find (binary search): O(log2n) (worst-case)