data-structures-csharp
data-structures-csharp copied to clipboard
Add method doesn't have O(Log N) complexity
Every call of Add is followed with FixHeight. FixHeight has O(N) complexity because FixHeight is a BFS traversal.