typedef struct word { int n; //出现次数 char str[30]; struct word *next; }node, *qnode; typedef qnode Dictionary[26 * 26];