some common rust_algorithms, Everyone can participate, and the project will continue to be updated, all the algorithms comes from <Introduction to Algorithms III>
///优先队列
modpriority_queue;///栈
modstack;///单向链表
modlinkedlist;///复数
modcomplex;///二叉树
modbinarytree;pubuseself::priority_queue::Max_Priority_Queue as MaxPriorityQueue;pubuseself::stack::Stack as Stack;pubuseself::linkedlist::LinkedList as LinkedList;pubuseself::linkedlist::Node as LinkedListNode;pubuseself::complex::Complex as Complex;pubuseself::binarytree::BinaryTree as BinaryTree;