练习 6-3 编写一个交叉引用程序,打印文档中所有单词的列表,并且每个单词还有一 个列表,记录出现过该单词的行号。对 the、and 等非实义单词不予考虑。
#include#include#include#include#defineMAXWORD100/*AuthorStat:founded20171126*/staticintcount_line=1;structline{intline;structline*next;};structtnode{char*word;structline*start;structtnode*next;};stru