package cn.aust.zyw.demo; public class BST<Key extends Comparable<Key>,Value> { public static void main(String args[]){ BST<Integer,String> bst=new BS
分类:
其他好文 时间:
2016-03-02 17:49:23
阅读次数:
189
#define_CRT_SECURE_NO_WARNINGS
#definem100
typedefcharDataType;
typedefstructNode/*二叉链表的结构体*/
{
DataTypedata;
structNode*LChild;
structNode*RChild;
}BiTNode,*BiTree;
#defineQueue_Size100
typedefBiTreeQueueElement;
typedefstruct//定义顺序队列..
分类:
其他好文 时间:
2015-11-25 01:14:35
阅读次数:
188