Skip to content

jeremiahtenbrink/queue

Repository files navigation

Welcome to @jeremiah_tenbrink/queue 👋

Version Documentation Maintenance License: MIT

Queue using a doubly linked list.

@jeremiah_tenbrink/doubly-linked-list

Install

With Npm

npm install @jeremiah_tenbrink/queue

With yarn

yarn add @jeremiah_tenbrink/queue

Usage

import {Queue} from "@jeremiah_tenbrink/queue";

const q = new Queue();
q.enqueue('some value')
q.enqueue('another value')

while (!q.isEmpty()){
  const current = q.dequeue();
  console.log(current)
}

Author

👤 Jeremiah Tenbrink

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Jeremiah Tenbrink.
This project is MIT licensed.


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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published