2006-12-13から1日間の記事一覧

word_count.c

C

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #define READ_MODE "rt" //for windows typedef struct WordCountTreeNode{ char *word; int count; struct WordCountTreeNode *left; //upper struct WordCountTreeNode *right; //bottom }WCTNode; WCTNode* wctn</ctype.h></string.h></stdlib.h></stdio.h>…

またもC

木を使った単語集計プログラム。 一応頑張って書いた関数がstrtok()のファイルポインタを引数に受ける焼き直しとか、K&Rの解答っぽかったりして呆然。