链表中为什么少输出一个数?

#include<stdio.h>
#include<stdlib.h>  
 typedef struct node
 {     int data; 
    struct node *next;
 }node,*list;  
list create(int n) 
 {  
    int i;  
    node *p,*q;node *head;  
    p=q= (node*) malloc (sizeof(node));      
    scanf("%d",&p->data); 
    for(i=0;i<n;i++) 
         {        
           if(i==0)    
             {     
                  head=p;     
                    }         
        else    
           {       
               q->next=p;    
            q=p;    
           p=(node*)malloc(sizeof(node));                  
           scanf("%d",&p->data);        
          }    
       }
           q->next=NULL;    
        return head; 
    }   
void print(node *head) 
        {  
            node *p;  
            p=head;  
            while(p!=NULL)    
          {      
             printf("%d ",p->data);          
            p=p->next;     
           }
           } 
            int main() 
             {  
                 int n;      
                scanf("%d",&n);  
                 node *head,*p;     
                head=create(n);      
                print(head); 
             }
阅读 2k
1 个回答
#include <stdio.h>
#include <stdlib.h>

typedef struct node {
  int data;
  struct node *next;
} node, *list;

list create(int n) {
  int i;
  node *p, *q;
  node *head;
  p = q = (node *)malloc(sizeof(node));
  scanf("%d", &p->data);
  for (i = 0; i < n; i++) {
    if (i == 0) {
      head = p;
    } else {
      p = (node *)malloc(sizeof(node));
      q->next = p;
      q = p;
      scanf("%d", &p->data);
    }
  }
  q->next = NULL;
  return head;
}

void print(node *head) {
  node *p;
  p = head;
  while (p != NULL) {
    printf("%d ", p->data);
    p = p->next;
  }
}

int main() {
  int n;
  scanf("%d", &n);
  node *head, *p;
  head = create(n);
  print(head);
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进