Skip to content

Commit ee26153

Browse files
committed
Binary Search Tree: big o
1 parent eb4c156 commit ee26153

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- Queue: Implementation [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/queue/queue.py) & Big O Complexity [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/queue/big_o.py)
2424
- Linked List: Implementation [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/linked_list/linked_list.py) & Big O Complexity [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/linked_list/big_o.py)
2525
- Binary Tree: Implementation [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/binary_tree/binary_tree.py) & Big O Complexity [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/binary_tree/big_o.py)
26-
- Binary Search Tree: Implementation [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/binary_search_tree/binary_search_tree.py)
26+
- Binary Search Tree: Implementation [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/binary_search_tree/binary_search_tree.py) & Big O Complexity [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/binary_search_tree/big_o.py)
2727
- Binary Search Tree Without Node class: Implementation [Here](https://github.com/LeandroTk/algorithms/blob/master/computer_science/data_structures/binary_search_tree_without_node/binary_search_tree.py)
2828

2929
# Competitive Programming Websites
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# insert: O(log(N)) - Logarithmic Time
2+
# find / search: O(log(N)) - Logarithmic Time
3+
# traversal: O(N) - Linear Time

0 commit comments

Comments
 (0)