Skip to content

Latest commit

 

History

History
 
 

search

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Search

Search algos playlist

Binary Search

❯ python binary_search.py
Index of 18: 5
Index of 1: 0
Index of 9: 4
Index of 22: 9
Index of 30: 13
Index of 50: -1

Breadth-First Search

❯ python breadth_first_search.py
A B C D E F G H I

Depth-First Search

❯ python depth_first_search.py
A B C D E F G H I