Binary search tree: Difference between revisions

Content deleted Content added
m Successor and predecessor: if has then, but while has do
m remove duplicate/nested {{math}}s
Line 6:
|invented_by=P.F. Windley, [[Andrew Donald Booth|A.D. Booth]], [[Andrew Colin|A.J.T. Colin]], and [[Thomas N. Hibbard|T.N. Hibbard]]
|invented_year=1960
|space_avg={{math|{{math|O(''n'')}}}}
|space_worst={{math|{{math|O(''n'')}}}}
|search_avg={{math|{{math|O(log ''n'')}}}}
|search_worst={{math|{{math|O(''n'')}}}}
|insert_avg={{math|{{math|O(log ''n'')}}}}
|insert_worst={{math|{{math|O(''n'')}}}}
|delete_avg={{math|{{math|O(log ''n'')}}}}
|delete_worst={{math|{{math|O(''n'')}}}}
}}