https://github.com/danigb/cs-playground
Classic algorithms and data structures implemented in clojure
https://github.com/danigb/cs-playground
algorithms computer-science data-structures
Last synced: 5 months ago
JSON representation
Classic algorithms and data structures implemented in clojure
- Host: GitHub
- URL: https://github.com/danigb/cs-playground
- Owner: danigb
- License: epl-1.0
- Created: 2017-03-02T12:02:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T09:39:43.000Z (about 9 years ago)
- Last Synced: 2024-12-27T11:41:33.746Z (over 1 year ago)
- Topics: algorithms, computer-science, data-structures
- Language: Clojure
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Computer Science in Clojure
> Classic algorithms and data structures implemented in clojure
## Data structures
- [ ] Linked lists
- [ ] Trees
- [ ] Tries
- [ ] Graphs
- [ ] Stacks and queues
- [ ] Heap
- [ ] Vector/arraylist
- [ ] Hash table
## Algorithms
- [ ] Breadth-first search
- [ ] Depth-first search
- [ ] Binary search
- [ ] Merge sort
- [ ] Quick sort
## Concepts
- [ ] Bit manipulation
- [ ] Memory
- [ ] Recursion
- [ ] Dynamic programming
- [ ] Big O in time & space