1.0.2 • Published 2 years ago

data-structures-nodejs v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

vary data structures implements by nodejs

.
├── queue
│   ├── array_queue.js
│   └── linked_queue.js
├── stack
│   ├── array_stack.js
│   └── linked_stack.js
└── tree
    └── tree.js

Install

npm i data-structures-nodejs

Example

const { Queue } = require('data-structures-nodejs')
const queue = new Queue()
queue.enqueue(1)
queue.enqueue(2)
queue.dequeue() // 1
queue.dequeue() // 2

Author

👤 selenium39

🤝 Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2022 selenium39. This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator