摘要:
1 BinTree Insert( BinTree BST, ElementType X ) 2 { 3 if (BST==NULL) { 4 BinTree tmp=(BinTree)malloc(sizeof(struct TNode)); 5 tmp->Data=X; 6 tmp->Left=tmp->Right=NULL... 阅读全文
posted @ 2018-12-06 21:09
xidian_mao
阅读(258)
评论(0)
推荐(0)
浙公网安备 33010602011771号