摘要:
View Code #include <stdio.h>#include <string.h>#include <stdlib.h>#define MAX 26typedef struct Node{ int isword; struct Node *next[MAX];}Trie;void InsertTree(Trie *root,const char *s);int searchTree(Trie *root,const char *s);void deleteTree(Trie *root);void InsertTree(Trie *root,co 阅读全文
posted @ 2012-06-03 21:49
蓝色守望
阅读(178)
评论(0)
推荐(0)

浙公网安备 33010602011771号