vary data structures implements by nodejs
.
βββ queue
β βββ array_queue.js
β βββ linked_queue.js
βββ stack
β βββ array_stack.js
β βββ linked_stack.js
βββ tree
βββ tree.js
npm i data-structures-nodejs
const { Queue } = require('data-structures-nodejs')
const queue = new Queue()
queue.enqueue(1)
queue.enqueue(2)
queue.dequeue() // 1
queue.dequeue() // 2
π€ selenium39
- Website: https://blog.csdn.net/qq_45453266
- Github: @wantao666
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a βοΈ if this project helped you!
Copyright Β© 2022 selenium39.
This project is MIT licensed.
This README was generated with β€οΈ by readme-md-generator