https://github.com/ne-sachirou/pqueue2
Elixir Priority queue that wraps pqueue2.
https://github.com/ne-sachirou/pqueue2
elixir priority-queue
Last synced: about 1 year ago
JSON representation
Elixir Priority queue that wraps pqueue2.
- Host: GitHub
- URL: https://github.com/ne-sachirou/pqueue2
- Owner: ne-sachirou
- License: mit
- Created: 2017-07-02T16:18:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-30T01:58:09.000Z (about 3 years ago)
- Last Synced: 2024-09-19T10:37:55.421Z (almost 2 years ago)
- Topics: elixir, priority-queue
- Language: Elixir
- Size: 88.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/ne-sachirou/pqueue2/actions)
[](https://coveralls.io/github/ne-sachirou/pqueue2)
[](https://hex.pm/packages/pqueue2)
# PQueue2
Priority queue that wraps [pqueue2](https://hex.pm/packages/pqueue).
```elixir
q = PQueue2.new |> PQueue2.put(:a, 2) |> PQueue2.put(:b, 1) |> PQueue2.put(:c, 1)
{:b, q} = PQueue2.pop(q)
{:c, q} = PQueue2.pop(q)
{:a, q} = PQueue2.pop(q)
```
PQueue2 implements Collectable & Enumerable.
```elixir
[:b, :c, :a, :d] == [{:a, 2}, {:b, 1}, {:c, 1}, {:d, 2}] |> Enum.into(PQueue2.new) |> Enum.to_list()
```
For more details please read the [Doc](https://hexdocs.pm/pqueue2).
## Installation
Add `pqueue2` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:pqueue2, "~> 0.4"}]
end
```