QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1182|回复: 0

请看看我的这个程序哪里不对了,在下谢过了!

[复制链接]
发表于 2006-9-27 22:38:54 | 显示全部楼层 |阅读模式
请大家看看,多谢了!

#include <stdio.h>
#include <stdlib.h>
typedef struct node
{
        int data;
        struct node *next;
}linklist;

void creatlist(linklist *S)      /* 就是这个函数的使用,是不是有问题*/
{
        S = (linklist *)malloc(sizeof(linklist));
        if (S == NULL){
                printf ("No enough memory!\n");
        }
        else {
                (S -> next = NULL);
        }
}
void outputlist(linklist *S)
{
        linklist *P;
       
        P = S -> next;
        while (P != NULL){
                printf ("%d\t",P -> data);
                P = P -> next;
        }
        printf ("\n");
}

void main()
{
        int n,i;
        linklist *L, *S;
                                      /* 这里有使用是不是有点问题呢?*/
        creatlist(*&L);       
        printf ("Input the items you want:");
        scanf ("%d\n",&n);
        for (i = 0; i < n; i ++ ){
                creatlist(*&S);
                L -> next = S;
                printf ("Input the %d data:", i + 1);
                scanf ("%d\n",*&S -> data);
        }
        outputlist(L);
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-2 08:32 , Processed in 0.041026 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

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