#include<iostream>
using namespace std;
typedef struct LNode
{
int data;
struct LNode* next;
}LNode, * Linklist;
void creatlist(LNode*& L, int arr[], int sz)
{
L = (LNode*)malloc(sizeof(LNode));
L->next = NULL;
LNode* p = L;
LNode* r = p;
for (int i = 0; i < sz; i++)
{
p = (LNode*)malloc(sizeof(LNode));
p->data = arr[i];
r->next = p;
r = p;
}
}
void del(LNode* L)
{
LNode* p = L->next;
LNode* q;
while (p->next != NULL)
{
if (p->data == p->next->data)
{
q = p->next;
p->next = q->next;
free(q);
}
else
p = p->next;
}
}
void Printf(Linklist L)
{
LNode* p = L->next;
while (p != NULL)
{
cout << p->data << " ";
p = p->next;
}
}
int main()
{
int arr[] = { 1,1,1,1,2,2,3,3,4,4,4,4,5,5,8,8,12 };
int sz = sizeof(arr) / sizeof(arr[0]);
Linklist L;
creatlist(L, arr, sz);
del(L);
Printf(L);
return 0;
}
为什么这个代码在 VS2022 上面运行不了?
在 vs 里面,malloc 并不会把分配的数据清零,所以你的
p->next 现在是随机值,在后面
就会出问题,把
改为
就好了