An open API service indexing awesome lists of open source software.

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

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