growing
发布时间:2016-03-29 17:25:07
1.线性探测#pragma once#include<string> enum Status{ EMPTY, EXISTS, DELETE,};template<class K>struct Hash.........【阅读全文】
发布时间:2016-03-23 17:15:59
#pragma once#include <vector>template<class T>class Heap{public: Heap() &.........【阅读全文】
发布时间:2016-03-22 13:03:58
#include <stack>#pragma onceenum PointerTag{THREAD,LINK};template<class T>struct BinaryTreeNode_Thd{ BinaryTreeNode_Thd(const T& data) .........【阅读全文】
发布时间:2016-03-18 12:20:25
1.前序遍历利用栈,访问顺序为根,左,右,压栈是先压右,左边后进就可以先访问。void _PrevOrder_NoR(BinaryTreeNode *root) { if(root == NULL) .........【阅读全文】