https://github.com/vijayksingh/practice-datastructure
A collection of common data structure exercises accompanied with test cases for self study.
https://github.com/vijayksingh/practice-datastructure
algorithms algorithms-and-data-structures data-structures datastructures-algorithms interview javascript practice
Last synced: about 1 month ago
JSON representation
A collection of common data structure exercises accompanied with test cases for self study.
- Host: GitHub
- URL: https://github.com/vijayksingh/practice-datastructure
- Owner: vijayksingh
- Created: 2022-12-10T08:49:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-30T22:50:13.000Z (almost 2 years ago)
- Last Synced: 2025-01-24T12:28:37.260Z (3 months ago)
- Topics: algorithms, algorithms-and-data-structures, data-structures, datastructures-algorithms, interview, javascript, practice
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Practice Datastructure
A collection of common data structure exercises accompanied with test cases for self study.## How to use this repo.
Each repo contains `src\datastructure` folder which consists of multiple data structure implementation which as of now you'll find to be empty.
Each data strcuture folder has two files `datastructure.js` and `datastructure.test.js``datastructure.js` contains the class Shape along with common methods without implementation.
You can add you own implementation along with the test cases associated with each file.
## How to run test
You can run test for each datastructre by running the command `npm run ${path to your datastructure test file}`
## TODO :
- [ ] Add learning notes / reading material for the DS
- [ ] Write stubs for common algorithms.
- [ ] Verify correctness of all test cases associated with all DS / Algos.
- [ ] Add a CLI based interface to track progress.