下面双链表中的指针问题如何解决?

问题描述

最近学习了双向链表,并尝试用C编写一些代码来实现它们。下面的程序应该接收来自用户的整数输入,并将它们放入一个最多包含十个整数的列表中。但是,当我输入值然后打印它们时,只输出一个和最后一个值。人们将如何解决这个问题? 代码如下:

`#include <stdio.h>
#include <stdlib.h>
struct node {
    struct node* prev;
    int num;
    struct node* next;

};


struct node *head,*p;
struct node* create_first_node(int x)
{
    struct node *new = (struct node*)malloc(sizeof(struct node));
    new->num=x;
    new->prev=NULL;
    new->next=NULL;
    head=new;
    p=head;
    return new;
}
void add_node(int x)
 {
    struct node*new=(struct node*)malloc(sizeof(struct node));
    new->num=x;
    new->prev=p;
    p->next=new;
    (new->next)=NULL;
    new=p;
 }

 void print_list(){
    struct node *temp= head;
    printf("\nThe list is:\n");
    while (temp!=NULL)
    {
        printf("%d\t",temp->num);
        temp=temp->next;
    }
}

int main(){
    int in[10];
    int len,i;
    head=NULL;
    
    printf("How many nodes would you like?(Max=10) \n");
    scanf("%d",&len);

    for (i = 0; i < len; i++)
    {
         if (head == NULL && i==0)
        {   
            printf("Enter Value for node %d\n",i+1);
            scanf("%d",(in+i));
            create_first_node(in[0]); 
           
        }
        else
        {
                printf("Enter Value for node %d\n",i+1);
                scanf("%d",(in+i));
                add_node(in[i]);
        }
        
    }
    
   
    print_list(head);
    return 0;
}`

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)