2014年3月2日
摘要: #include #include #include typedef struct link{ char* ch; int num; link* next;}link;int main(int argc, char* argv[]){ FILE *fp; fp=fopen("d:\\test.txt","r"); char word[100000]; int pos=0; char c; link *head, *pnow, *ptmp; head=NULL; pnow=NULL; ptmp=NULL; while (!feof(fp)) { c=fge 阅读全文
posted @ 2014-03-02 22:40 左←眼 阅读(137) 评论(0) 推荐(0)