文章
5
粉丝
141
获赞
4
访问
38.9k
#include <stdio.h>
#include <stdlib.h>
typedef struct Node{
struct Node *child[26];
int num;
char data;
}Node,*Link;
void insert(Link T,char datas[20]){
int flag=0;
Link p=T;
for(int i=0;datas[i]!=0;i++){
flag=0;
for(int j=0;j<p->num;j++){
if(datas[i]==p->child[j]->data){
p=p->child[j];
flag=1;
break;
}
}
if(flag==0){
 ...
登录后发布评论
暂无评论,来抢沙发