https://github.com/phineas-pta/hello-algo.jl
Julia implementation of hello-algo project (Data Structures and Algorithms crash course)
https://github.com/phineas-pta/hello-algo.jl
data-structures-and-algorithms dsa julia learning-julia
Last synced: over 1 year ago
JSON representation
Julia implementation of hello-algo project (Data Structures and Algorithms crash course)
- Host: GitHub
- URL: https://github.com/phineas-pta/hello-algo.jl
- Owner: phineas-pta
- License: other
- Created: 2024-01-15T17:47:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-20T15:37:33.000Z (over 2 years ago)
- Last Synced: 2025-01-26T14:30:00.508Z (over 1 year ago)
- Topics: data-structures-and-algorithms, dsa, julia, learning-julia
- Language: Julia
- Homepage:
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hello-algo.jl
Julia implementation of `hello-algo` project (Data Structures and Algorithms crash course)


original: https://github.com/krahets/hello-algo/tree/main/codes
all folders and files are numbered (not the case in original repo)
TODO:
- [ ] verify output to match python/js/java/c++ code
- [ ] open PR to orginal repo
chapters:
- [x] chap 00 (no code): preface
- [x] chap 01 (no code): intro
- [x] chap 02: computational complexity
- [x] chap 03 (no code): data structure
- [x] chap 04: array & linked list
- [x] chap 05: stack & queue
- [x] chap 06: hashing
- [x] chap 07: tree
- [x] chap 08: heap
- [x] chap 09: graph
- [x] chap 10: searching
- [x] chap 11: sorting
- [x] chap 12: divide & conquer
- [x] chap 13: backtracking
- [x] chap 14: dynamic programming
- [x] chap 15: greedy algo
- [x] chap 16 (no code): appendix
- [x] chap 17 (no code): reference




