heap/README.md

100 lines
2.6 KiB
Markdown
Raw Normal View History

2016-03-02 20:29:16 +13:00
# Heap
[![Build Status](https://travis-ci.org/jamesotron/heap.svg?branch=main)](https://travis-ci.org/jamesotron/heap)
2016-03-02 20:41:06 +13:00
[![Hex.pm](https://img.shields.io/hexpm/v/heap.svg)](https://hex.pm/packages/heap)
2017-09-26 13:39:49 +13:00
[![Inline docs](http://inch-ci.org/github/jamesotron/heap.svg)](http://inch-ci.org/github/jamesotron/heap)
2016-03-02 20:29:16 +13:00
A Heap is a very useful data structure, because it sorts, quickly, at insert time.
2016-03-02 20:41:06 +13:00
2016-03-02 20:29:16 +13:00
See also: https://en.wikipedia.org/wiki/Heap_(data_structure)
You can use it for things like:
- Help with scientific computing
- Quickly sorting
- Priority queues
## Installation
2017-09-26 10:01:31 +13:00
This package is [available in Hex](https://hex.pm/packages/heap):
2016-03-02 20:29:16 +13:00
1. Add heap to your list of dependencies in `mix.exs`:
2017-09-26 10:01:31 +13:00
```elixir
2016-03-02 20:29:16 +13:00
def deps do
2017-09-26 10:01:31 +13:00
[{:heap, "~> 2.0"}]
2016-03-02 20:29:16 +13:00
end
2017-09-26 10:01:31 +13:00
```
2. Run `mix deps.get`
2016-03-02 20:29:16 +13:00
2017-09-26 13:35:21 +13:00
## Deprecation warning
If you're upgrading from `heap` < 2.0 be aware that the direction of the `:<`
and `:>` atoms passed into `Heap.new/1` has changed to make more sense.
2016-03-02 20:29:16 +13:00
## Examples
Create a min heap and use it to find the smallest element in a collection:
```elixir
1..500 |> Enum.shuffle |> Enum.into(Heap.min) |> Heap.root
# => 1
```
Likewise, for max heaps:
```elixir
1..500 |> Enum.shuffle |> Enum.into(Heap.max) |> Heap.root
# => 500
```
A priority queue:
Tuples are compared by their elements in order, so you can push tuples
of `{priority, term}` into a Heap for sorting by priority:
```elixir
Heap.new
|> Heap.push({4, :jam})
|> Heap.push({1, :milk})
|> Heap.push({2, :eggs})
|> Heap.push({1, :bread})
|> Heap.push({3, :butter})
|> Heap.push({2, :coffee})
|> Enum.map(fn {_, what} -> what end)
# => [:bread, :milk, :coffee, :eggs, :butter, :jam]
```
The heap can also be constructed with a custom comparator:
```elixir
Heap.new(&(Date.compare(elem(&1, 0), elem(&2, 0)) == :gt))
|> Heap.push({~D[2017-11-20], :jam})
|> Heap.push({~D[2017-11-21], :milk})
|> Heap.push({~D[2017-10-21], :bread})
|> Heap.push({~D[2017-10-20], :eggs})
|> Enum.map(fn {_, what} -> what end)
# => [:milk, :jam, :bread, :eggs]
```
To access the root and the rest of the heap in one line use `Heap.split/1`:
```elixir
{root, rest} = Heap.split(heap)
{root, rest} == {Heap.root(heap), Heap.pop(heap)}
# => true
```
2016-03-02 20:29:16 +13:00
### Documentation
Full API documentation is available on (hexdocs.pm)[https://hexdocs.pm/heap]
## Contributing
2016-07-08 11:07:03 +12:00
1. Fork it ( https://github.com/jamesotron/heap/fork )
2016-03-02 20:29:16 +13:00
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
2016-07-08 11:03:55 +12:00
5. Create a new Pull Request