To be a data structures and algorithms master
- array (see array playground)
- fixedLengthArray
- queue
- stack
- fixedLengthQueue
- circularQueue
- linkedList
- sequential search
- binary search
- bubble sort
npm install
Run tests for a specific data structure (Example uses queue):
npx jest --testNamePattern="Queue"
If name pattern crashes, you can use the exact file path
npx jest dataStructure/queue/queue.test.js
Run a .js file (Example uses arrayPlayground.js)
node dataStructure/array/arrayPlayground.js