algorithm_rust 0.6.0

some common rust_algorithms, Everyone can participate, and the project will continue to be updated, all the algorithms comes from <Introduction to Algorithms III>
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
///优先队列
mod priority_queue;
///mod stack;
///单向链表
mod linkedlist;
///复数
mod complex;
///二叉树
mod binarytree;

pub use self::priority_queue::Max_Priority_Queue as MaxPriorityQueue;
pub use self::stack::Stack as Stack;
pub use self::linkedlist::LinkedList as LinkedList;
pub use self::linkedlist::Node as LinkedListNode;
pub use self::complex::Complex as Complex;
pub use self::binarytree::BinaryTree as BinaryTree;