簡體   English   中英

C中的鏈表程序掛起

[英]Linked list program in C hangs

我正在編寫一個鏈接列表程序,以添加項目並顯示這些項目。 我能夠成功添加第一項,但是添加第二項時發生錯誤。 我試圖找出錯誤,但對我來說一切正常。 程序掛起,這是我的代碼:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

struct link_list
 {
  int number;
  struct link_list *next;
 };

 typedef struct link_list node;
 node *head;

 void add(int num)
 {
   node *newnode,*current;
   newnode = (node *)malloc(sizeof(node));
   newnode->number = num;
   newnode->next = NULL;
  if(head == NULL)
   {
     head = newnode;
     current = newnode;
   }
 else
   {
     current->next = newnode;
     current = newnode;
   }
}

void display(node *list)
{
 list = head;
 if(list == NULL)
  {
     return;
  }
 while(list != NULL)
 {
     printf("%d",list->number);
     list = list -> next;
 }
 printf("\n");
}

int  main()
 {
 int i,num;
 node *n;
 head=NULL;
 while(1)
  {
    printf("\nList Operations\n");
    printf("===============\n");
    printf("1.Insert\n");
    printf("2.Display\n");

    printf("3.Exit\n");
    printf("Enter your choice : ");
    if(scanf("%d",&i)<=0)
    {
        printf("Enter only an Integer\n");
        exit(0);
    }
    else
    {
        switch(i)
        {
            case 1:
                     printf("Enter the number to insert : ");
                     scanf("%d",&num);
                     add(num);
                     break;
            case 2:
                   if(head==NULL)
                    {
                    printf("List is Empty\n");
                    }
                    else
                    {
                    printf("Element(s) in the list are : ");
                    }
                    display(n);
                    break;
            case 3:     return 0;
            default:    printf("Invalid option\n");
        }
    }
  }
  return 0;
}

問題在於current值在函數調用之間不存在。 可以將其移出函數(即,在head聲明的正下方),也可以將其聲明為static

只是一項更改,在void add范圍之外定義當前指針

節點* head,* current;

這是正確的代碼

struct link_list
 {
  int number;
  struct link_list *next;
 };

 typedef struct link_list node;
 node *head,*current;

void add(int num)
{
node *newnode;
newnode = (node *)malloc(sizeof(node));
newnode->number = num;
newnode->next = NULL;
 if(head == NULL)
 {
 head = newnode;
 current = newnode;
 }
else
 { 
 current->next = newnode;
 current = newnode;
 }
 }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM