이진 트리로 구현한 문자열, 숫자 정렬 소스
문자열 정렬 #include #include #include struct tree { char info[20]; int cnt; struct tree * left,*right; }*root; FILE *in,*out; void insert(char *); void inorder(struct tree *); void main(){ char value[20]; in =fopen("word.dat","r"); out = fopen("freq.out","w"); while(fscanf(in,"%s",value),(strcmp(value,"/*")!=0)) insert(value); fprintf(out,"\tWords\t\t\tFrequencies\n"); inorder(root); fclose(in); fcl..
2007. 3. 30.