鱼C论坛

 找回密码
 立即注册
查看: 2004|回复: 1

[已解决]我用malloc申请空间,编译不过去

[复制链接]
发表于 2021-3-15 16:42:51 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
/写出将带头结点的线性单链表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};
};
最佳答案
2021-3-15 18:04:09
本帖最后由 jackz007 于 2021-3-15 18:07 编辑
#include <stdio.h>
#include <stdlib.h>

struct student{
        int num                                                           ;
        struct student * next                                             ;
}                                                                         ;

struct student * foo(struct student * head , int d)
{
        struct student * p1 , * p2                                        ;
        if((p1 = (struct student *) malloc(sizeof(struct student)))) {
                p1 -> next = NULL                                         ;
                p1 -> num = d                                             ;
                for(p2 = head ; p2 && p2 -> next ; p2 = p2 -> next)       ;
                if(p2) p2 -> next = p1                                    ;
                else head = p1                                            ;
        } else {
                fprintf(stderr , "\n")                                    ;
                fprintf(stderr , "Error : malloc()\n")                    ;
                fprintf(stderr , "\n")                                    ;
        }
        return head                                                       ;
}

int main(void)
{
        struct student * L , * P                                          ;
        int i , m                                                         ;
        for(L = NULL , i = 0 ; i < 10 ; i ++) L = foo(L , 100 + i)        ;
        printf("%d" , L -> num)                                           ;
        for(P = L -> next ; P ; P = P -> next) printf(" , %d" , P -> num) ;
        printf("\n")                                                      ;
        for(P = L ; P ; L = P) {
                P = L -> next                                             ;
                free(L)                                                   ;
        }   
}
        编译、运行实况:
D:\0002.Exercise\C>g++ -o x x.c

D:\0002.Exercise\C>x
100 , 101 , 102 , 103 , 104 , 105 , 106 , 107 , 108 , 109

D:\0002.Exercise\C>
        
        楼主似乎格外偏爱 L,定义个结构名叫 L,定义个函数,名字还叫 L,这是为什么呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-3-15 18:04:09 | 显示全部楼层    本楼为最佳答案   
本帖最后由 jackz007 于 2021-3-15 18:07 编辑
#include <stdio.h>
#include <stdlib.h>

struct student{
        int num                                                           ;
        struct student * next                                             ;
}                                                                         ;

struct student * foo(struct student * head , int d)
{
        struct student * p1 , * p2                                        ;
        if((p1 = (struct student *) malloc(sizeof(struct student)))) {
                p1 -> next = NULL                                         ;
                p1 -> num = d                                             ;
                for(p2 = head ; p2 && p2 -> next ; p2 = p2 -> next)       ;
                if(p2) p2 -> next = p1                                    ;
                else head = p1                                            ;
        } else {
                fprintf(stderr , "\n")                                    ;
                fprintf(stderr , "Error : malloc()\n")                    ;
                fprintf(stderr , "\n")                                    ;
        }
        return head                                                       ;
}

int main(void)
{
        struct student * L , * P                                          ;
        int i , m                                                         ;
        for(L = NULL , i = 0 ; i < 10 ; i ++) L = foo(L , 100 + i)        ;
        printf("%d" , L -> num)                                           ;
        for(P = L -> next ; P ; P = P -> next) printf(" , %d" , P -> num) ;
        printf("\n")                                                      ;
        for(P = L ; P ; L = P) {
                P = L -> next                                             ;
                free(L)                                                   ;
        }   
}
        编译、运行实况:
D:\0002.Exercise\C>g++ -o x x.c

D:\0002.Exercise\C>x
100 , 101 , 102 , 103 , 104 , 105 , 106 , 107 , 108 , 109

D:\0002.Exercise\C>
        
        楼主似乎格外偏爱 L,定义个结构名叫 L,定义个函数,名字还叫 L,这是为什么呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-9 22:14

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表