我正在製作出現在文件中的單詞的鏈接列表(不重複)以及它們首次出現的行。我完成了我認爲會很難的部分(解析文件的同時跟蹤行),但是我相信我現在在我的一個方法中遇到問題,我無法弄清楚如何解決。我的代碼有兩個文件,但我只在代碼中隨驅動程序一起包含帶有問題的方法。 (我嘗試使用GDB,我想我是用錯了,因爲它不停地說,它無法找到文件,它不會跑。)鏈接列表出現問題
int main(int argc, char **argv){
file = fopen(argv[1],"r");
/*struct fileIndex *fIndex = NULL;*/ /*put this in header file??*/
fIndex = NULL;
delimiters = " .,;:!-";/*strtok chars to seperate*/
rewind(file);
int buffer = 65;
char str[buffer+1];/*where the lines are being stored*/
char *token, *cp;
int i;
int len;
while((fgets(str, buffer, file))!=NULL){/*inserting lines*/
for(i=0; i<buffer; i++){
if(str[i]=='\n'){
str[i]= '\0';
break;
}
}
len = strlen(str);
cp = xerox(str);
token = strtok(cp, delimiters);
/*if(token!=NULL)
printf("The word is %s\n", token);*/
if(!present(fIndex, token)&&(token!=NULL)){
insert(fIndex, i+1, token);
}
while(token!=NULL){
token = strtok(NULL, delimiters);
/*if(token!=NULL)
printf("The word is %s\n", token);*/
if(!present(fIndex, token)&&(token!=NULL)){
insert(fIndex, i+1, token);
}
}
}
fclose(file);
struct fileIndex *root;
root = fIndex;
while(root != NULL){
printf("The string is %s and on line %d\n", root -> str, root -> lineNum);
root = root -> next;
}
free(fIndex);
free(cp);
return 0;
}
struct fileIndex *insert(struct fileIndex *head, int num, char *insert){
struct fileIndex* newnode = malloc(sizeof(struct fileIndex));
if(newnode==NULL)
exit(1);
newnode -> str = insert;
newnode -> lineNum = num;
newnode -> next = head;
return newnode;
}
編輯:我還想到一個問題,我方法來檢查一個單詞是否已經存在或不存在。如果要插入單詞並打印所有單詞,我會在其中僅打印一個打印語句。最後打印列表的小循環不是打印,我認爲它在第一次到達時就達到NULL,並且從不循環。
present(struct fileIndex* fIndex, char *findIt){/*finds if word is in structure*/
struct fileIndex* current = fIndex;
while(current!=NULL){
current = current -> next;
if(strcmpigncase(current -> str, findIt)==0){
return current -> lineNum;
}
}
return 0;
}
您看到了什麼問題? – 2012-04-10 01:10:35