Skip to content

carterandrew/interview_prep

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coding Interview Prep

Python modules that implement various algorithms relevant to coding interviews.

Graphs

Traversal

[graphs/traversal.py]

  • Breadth-first graph traversal.
  • Depth-first graph traversal (iterative).

Trees

Traversal

[trees/traversal.py]

  • In-order
  • Pre-order
  • Post-order

Searching

Binary Search

[search/binary_search.py]

Iterative and recursive implementations of binary search algorithm.

Sorting

Merge Sort

[sort/merge_sort.py]

Recursive implementation of merge sort.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages