我这个申请结构错哪了
//写出将带头结点的线性单链表L就地逆置的算法#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#define LEN sizeof(struct student)
struct student{
int num;
struct student *next;
}*L;
struct student *L()
{
int *L=NULL;
L =(int *)malloc(sizeof(int)*LEN);
if(NULL!=L)
exit(1);
else { L->next=LEN;
L->num =0};
}; 申请空间错哪了
struct student{
int num;
struct student *next;
}*L;
struct student *L()
{
int *L=NULL;
L =(int *)malloc(sizeof(int)*LEN);
if(NULL!=L)
exit(1);
else { L->next=LEN;
L->num =0};
}; 楼主,你的这个 L 难道是万能的 007 吗? jackz007 发表于 2021-3-15 18:13
楼主,你的这个 L 难道是万能的 007 吗?
哈哈
页:
[1]