Data structures implemented in the latest javascript, designed for isomorphic and progressive web applications.
current focus is data structures, then i'll swing back to algorithms
Beta release will be useable for all of the awesome applications your building.
- Efficiency at scale is a priority for your application and shaving 5ms from your in-app processes is critical for your user experience
- Your application requires efficient searching, insertion, and/or retrieval
- Your application stores complex data in state
- Your application ingest and store large data sets in-app which are frequently accessed and updated (e.g. data visualizations using D3 v4)
- Immutable data types are important
- read our code of conduct
- read our contribution guidelines
- start coding!
- clone
- install
-
$ npm run start
- Recap of all implemented datastructures
- Two Dimensional Array
- List
- Linked List
- Doubly Linked List
- Circular Linked List
- Queue
- Dequeue
- pronounced deck
- Priority Queue
- Stack
- Dictionary
- Binary Search Tree
- my plan is to implement the Abstract Data Type for data structures not provided by or not fully implemented by javascript