c - 链表不能在 C 中正确打印/添加

标签 c linked-list

这只是一个粗略的代码,所以里面还没有免费的。 我只是想弄清楚它在哪里弄乱了我的链表。

以下函数的目的是接受如下内容:

add 1 2

add 1 "some quote" maybe more stuff

并制作一个包含元素的链表.. 在第一种情况下:

[add]->[1]->[2]

第二种情况:

[add]->[1]->["some quote" maybe more stuff]

我知道它实际上是在执行这些步骤,因为“计数/总计”在输出中是正确的。但是,当我尝试遍历链表时,它只打印第一个元素。

typedef struct command{
    char* args;
    struct command *next;
}command;
typedef struct commands_list{
    command *head;  /*Start of the queue*/
    int total;  /*Total commands passed*/
}commands_list;

commands_list* process_command(char *command){
    char curr_char;                 /*Keeps track of current character*/
    int start_pos;
    int i;
    int len;    

    /*Length of user input*/
    int quote=0;
    int empty =1;
    commands_list *commands;
    struct command *conductor;

    len = strlen(command);              /*Calculate length*/    
    /*Initialize the List*/
    commands=malloc(sizeof(commands_list));         /*Allocate memory for the linked list*/
    commands->head = malloc(sizeof(struct command));
    conductor = commands->head;

    for(i=0,start_pos=0;i<strlen(command);i++){
        curr_char = command[i];
        if (empty==0){
            conductor = malloc(sizeof(struct command));
        }
        if (curr_char == ' '){      /*If there was a space found copy the stuff before the space*/
            if ( i>0 && command[i-1]==' ') {
                start_pos++;
                continue;
            }
            conductor->args = malloc(i-start_pos+1*(sizeof(char))); /*Allocate memory for the word to be copied*/
            strncpy(conductor->args,command+start_pos,i-start_pos); /*Copy the word/command to the memory allocated*/
            conductor->args[i-start_pos+1]='\0';            /*Add null terminator at end*/
            commands->total++;              /*Increase total # of commands*/
            conductor=conductor->next;          /*Conductor points to the first element now*/
            start_pos =i+1;
            if (empty==1){
                empty=0;
            }
        }
        else if (curr_char == '\"'){        /*If a quote was found, copy the rest of the string and exit loop*/
            conductor->args = malloc(len-i+1*(sizeof(char)));
            strncpy(conductor->args,command+i,len-i);
            conductor->args[len-i+1]='\0';
            conductor->next=NULL;
            commands->total++;
            quote=1;
            //empty_queue = 0;
            conductor = conductor->next;
            if (empty==1){
                empty=0;
            }
            break;
        }
    }
    if (quote==0){                  /*If there was no quote in the string, get the last element*/
        if (empty==0){
            conductor = malloc(sizeof(struct command));
        }
        conductor->args = malloc(len-start_pos+1*(sizeof (char)));
        strncpy(conductor->args,command+start_pos,len-start_pos);
        conductor->args[len-start_pos+1]='\0';
        conductor->next=NULL;
        commands->total++;
    }   /*Finish find quote*/
    printf("%d commands found\n",commands->total);
    //free(conductor);
    return commands;    
}

还有一个我用来打印链表的临时方法:

int print_list(commands_list **headNode){
    commands_list *top = *headNode;
    struct command *temp = top->head;           /*Temporary variable for command*/
    while(temp!=NULL){
        printf("I was here to print: [%s]\n",temp->args);
        temp = temp->next;
    }
    printf("It was all null\n");

    free(temp);
}

谢谢

最佳答案

代码中存在很多问题,难以调试。

主要问题是如何将结构命令 * 添加到列表的末尾。线路

        conductor=conductor->next;

只会将 conductor 分配给 NULL(或任何 malloc 所做的)。你永远不会分配 conductor->next to anything.

当你 malloc 一个新的 struct 命令 * 时,你需要更新旧的 conductor->next 到新分配的元素。所以不是:

        conductor = malloc(sizeof(struct command));

你需要这样的东西:

        struct command *tmp = malloc(sizeof(struct command));
        conductor->next = tmp;
        conductor = tmp;

此外,如果您添加以下行,它可能有助于您的调试 conductor->args = "尚未分配 #1"; 在上面的最后一行之后。这很恶心,不应出现在生产代码中,但会帮助您调试问题。

关于c - 链表不能在 C 中正确打印/添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11381562/

相关文章:

java - 简单地改变一个变量的值会改变我链表中节点的值吗?这不应该发生

c++ - 在Visual Studio中查找非法的内存访问

java - 队列作为链表实现

c - 如何创建具有 Sentinel 值的链表

c - 哈希、链表、删除节点

c - 移动指针以便以不同的顺序打印

c - asctime() 奇怪的行为

c - Net-SNMP API 引用?

c++ - C++ 中的定宽整数

C-线程和进程-防止僵尸