摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1075 1 #include <iostream> 2 #include <string> 3 using namespace std; 4 struct Node 5 { 6 char str[20]; 7 int flag; 8 Node *child[26]; 9 }; 10 void NewNode(Node **Q)//注意这里使用了指针的指针 11 { 12 (*Q) = (Node *)malloc(sizeof(Node)); 13 i... 阅读全文