-1

基本的に、リストと個別の2つのリンクリストがあります。以前に「リスト」構造体に保存された単語のセットがいくつかあります。個別/一意の単語を見つけて「個別」構造体に保存するプログラムを作成するつもりでした。これが、ポインターに関する私の概念に基づいて、これまでに得たものです。ただし、「distinct」を印刷しようとすると、プログラムがクラッシュします:(間違っている場合は修正してください。

struct list {
char string[50];
struct list *next;
};

struct distinct {
char string[50];
struct distinct *next; 
};

void checkdistinct() { 

 list *ori = NULL;
 distinct *copy = NULL;
 distinct *check = NULL;

if(ori == NULL && copy == NULL) { //first time.
    ori = ori->next;
    copy = copy->next;
    copy = (distinct*)malloc(sizeof(distinct));
    strcpy(copy->string, ori->string);
    ori = ori->next;
    copy = copy->next;
}
else {}

while(ori!=NULL) {
    check = check->next;

   while(check != NULL) {
    if(strcmp(ori->string, check->string)!=0) {
        check = check->next;
    }
    else {
        ori = ori->next;
        check = NULL;
    }

 }

    //only compare same casing words, for now.
    copy = (distinct*)malloc(sizeof(distinct));
    strcpy(copy->string, ori->string);
    ori = ori->next;
    copy = copy->next;      
 }
}

メインで印刷しようとすると、クラッシュします :( コードに追加のコメントが必要な場合は返信してください。ありがとう!

4

2 に答える 2

0

コードでは、distinctは変数の名前ではなく、構造の名前です。あなたは誤解されたポインタを持っているようです、うまくいけば、それはあなたの質問に直接関係していませんが、これが役立つでしょう。

コードを単純に見せるために、多くのエラーチェックを省略しました。

typedef struct listnode {
    char string[50];
    struct listnode *next;
} list_node;

typedef struct listbase {
    list_node *head;
    int numberOfElements;
} list;

/* Add a new string at the start of the list
*/
void ListPrepend(list *myList, char *myString) {
    list_node *newNode = malloc(sizeof *newNode); /* create node to store string */

    strcpy(newNode->string, myString); /* copy string into node */
    newNode->next = myList->head;      /* New node now followed by whole list */
    myList->head = newNode;            /* List now starts with new node */
    myList->numberOfElements++;
}

/* Add a new string at the end of the list
*/
void ListAppend(list *myList, char *myString) {
    list_node *newNode = malloc(sizeof *newNode), /* create node to store string */
              *currentNode = myList->head; /* pointer to node so we can find the end */

    strcpy(newNode->string, myString); /* copy string into new node */
    newNode->next = NULL;              /* Nothing following this node */

    if ( myList->head == NULL ) {
        myList->head = newNode; /* we didn't have a start node so assign it */
    } else {
        /* if there is a next node, move to it */
        while ( currentNode->next != NULL ) {
            currentNode = currentNode->next;
        }
        /* there is no next node so add new node on the end */
        currentNode->next = newNode;
    }
    myList->numberOfElements++;
}

/* Show the list in order head to tail
*/
void ListDisplay(list *myList) {
    list_node *currentNode = myList->head;

    while ( currentNode != NULL ) {
        printf("%s\n", currentNode->string);
        currentNode = currentNode->next;
    }
}

int main() {
    list distinct = {0}; /* Now there is a variable called distinct */
    char name[][20] = {"Lim Zheng Yue", "Monkey", "Dave"};

    ListAppend(&distinct, name[0]);
    ListAppend(&distinct, name[1]);
    ListPrepend(&distinct, name[2]);
    ListDisplay(&distinct);
}
于 2012-06-26T13:16:38.267 に答える
0

次の 3 行が原因の可能性があります。

if(ori == NULL && copy == NULL) { //first time.
    ori = ori->next;
    copy = copy->next;

ここでoricopyNULLであるかどうかを確認すると、すぐにNULLこれらのポインターが逆参照されます。

于 2012-06-26T12:22:41.577 に答える