c语言顺序表单词词频统计 顺序表 记录单词词频
c语言顺序表单词词频统计先用结构体来记录单词和单词的词频struct word { char w[Word_Max]; int count;}a[1000];其中a[1000]为我们记录的顺序表 while (fscanf(fp, "%s", words) != EOF) { deleteNotA(words);//提取单词 //fprintf(f_out, "%s
", str); for (int
", str); for (int






