typedef struct node { char word[LENGTH + 1]; struct node *next; } node; node *hashtable[HASH_MAX]; int count = 0; int hash(string word) { int num = 0; ...
確定! 回上一頁