data-structures-nodejs

1.0.2Β β€’Β PublicΒ β€’Β Published

Welcome to data-structures-nodejs πŸ‘‹

Version Documentation Maintenance License: MIT

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

/data-structures-nodejs/

    Package Sidebar

    Install

    npm i data-structures-nodejs

    Weekly Downloads

    0

    Version

    1.0.2

    License

    ISC

    Unpacked Size

    13.2 kB

    Total Files

    13

    Last publish

    Collaborators

    • selenium39