0
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
typedef struct listnode{
int item;
struct listnode *next;
}ListNode;
typedef struct _linkedlist{
ListNode *head;
int size;
} LinkedList;
void printList(LinkedList *ll);
int sizeList(LinkedList *ll);
int insertSorted(LinkedList *ll, int value);
int removeDuplicates(LinkedList *ll);
int main()
{
int choice, i = 0;
ListNode *temp=NULL;
LinkedList *ll=NULL;
printf("1. create LinkedList\n2. insertSorted\n3. removeDuplicates\nChoose an option: ");
scanf("%d", &choice);
switch (choice)
{
case 1:
printf("Enter a list of numbers, terminated by the value -1: ");
scanf(" %d", &i);
while (i != -1){
if (ll == NULL)
{
ll = malloc(sizeof(LinkedList));
temp = ll;
}
else
{
temp->next = malloc(sizeof(ListNode));
temp = temp->next;
}
temp->item = i;
scanf(" %d", &i);
}
temp->next = NULL;
printList(&ll);
printf("Size of linked is %d", sizeList(&ll));
break;
case 2:
default:
break;
}
}
void printList(LinkedList *ll)
{
ListNode *temp = ll->head;
if (temp == NULL)
return;
while (temp!=NULL)
{
printf("%d ", temp->item);
temp = temp->next;
}
printf("\n");
}
int sizeList(LinkedList *ll)
{
int size=0;
ListNode *temp = ll->head;
if (temp == NULL)
return 0;
while (temp != NULL)
{
size++;
ll->size = size;
temp = temp->next;
}
return ll->size;
}
我想創建一個鏈表並計算鏈表的大小並輸出它。我設法得到大小並打印出列表,但最後,我的程序顯示一個調試錯誤,並指出運行時檢查失敗#2 - 圍繞變量'll'的堆棧已損壞。我可以知道爲什麼會發生這種情況?LinkedList堆棧損壞