#include "iostream"#include "cstring"using namespace std;typedef struct WordTimes{ char *str; int times; WordTimes *next;}WordTimes;char *MakeWord(char *str){ cout<<"MakeWord Done"; if(*str>'A'&&*str<'Z') { *str=*str+'a'+'A'; } if(str[strlen(str)-1]<'A'||s...