rust-adt 0.0.1

Implementation of common collections
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Documentation

## Heap

Maximal heap
------------

**Insert**: *O(n\*log(n))*

**Find max**: *O(1)*

**Extract max**: *O(n\*log(n))*

**Union**: *O(n^2\*log(n))*