鱼C论坛

 找回密码
 立即注册
查看: 1081|回复: 3

[已解决]大神求救

[复制链接]
发表于 2020-11-20 16:26:12 | 显示全部楼层 |阅读模式

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

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

x
编写程序,实现链表的创建和遍历。输入a,b,c,d,e,f六个字符作为结点的数据,创建具有六个数据元素的链表,然后实现输出链表结点中的数据元素值。要求有交互界面,输入1为创建链表,输入0为退出程序,输入2为显示链表中的数据元素。               不会写这个,希望有大神能帮忙解决
最佳答案
2020-11-20 18:30:16
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#define LEN sizeof(struct student)

struct student *creat();//创建链表
void print(struct student *head);//打印链表
struct student
{
        char num;
        struct student *next;
};
int n;//用来记录存放了多少数据
int main()
{
        int i,j;
        struct student *stu,*p;
                
        while(1)
        {
                printf("请输入数字1创建链表:");
                scanf("%d",&i);
                if(i==1)
                        break;
        }
        while(i==1)
        {
                printf("请输入内容:(每个内容已回车隔开): \n");
                stu=creat();
                break;
        }
    while(1)
        {
                printf("请输入数字2显示链表:");
                scanf("%d",&j);
                if(j==2)
                        break;
        }
        while(j==2)
        {
                p=stu;
            print(p);
                break;
        }
        
        
        printf("\n\n");
        system("pause");
}
struct student *creat()
{
        struct student *head;
        struct student *p1,*p2;
        p1=p2=(struct student *)malloc(LEN);
        p1->num=getchar();    
        head=NULL;
        n=0;
        while(p1->num!='0')
        {
                n++;
                if(n==1)
                {
                        head=p1;
                }
                else
                {
                        p2->next=p1;
                }
                p2=p1;
                p1=(struct student *)malloc(LEN);
            p1->num=getchar();
        }
        p2->next=NULL;
        return head;        
}
void print(struct student *head)
{
        struct student *p;
        p=head;
        if(head!=NULL)
        {
                do
                {
                        printf("%3c",p->num);
                        p=p->next;
                }while(p);
        }
}

                               
登录/注册后可看大图
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-20 16:56:19 | 显示全部楼层
输入0退出程序是指结束对链表的输入吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-20 17:02:35 | 显示全部楼层
a327190489 发表于 2020-11-20 16:56
输入0退出程序是指结束对链表的输入吗?

嗯是的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-20 18:30:16 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#define LEN sizeof(struct student)

struct student *creat();//创建链表
void print(struct student *head);//打印链表
struct student
{
        char num;
        struct student *next;
};
int n;//用来记录存放了多少数据
int main()
{
        int i,j;
        struct student *stu,*p;
                
        while(1)
        {
                printf("请输入数字1创建链表:");
                scanf("%d",&i);
                if(i==1)
                        break;
        }
        while(i==1)
        {
                printf("请输入内容:(每个内容已回车隔开): \n");
                stu=creat();
                break;
        }
    while(1)
        {
                printf("请输入数字2显示链表:");
                scanf("%d",&j);
                if(j==2)
                        break;
        }
        while(j==2)
        {
                p=stu;
            print(p);
                break;
        }
        
        
        printf("\n\n");
        system("pause");
}
struct student *creat()
{
        struct student *head;
        struct student *p1,*p2;
        p1=p2=(struct student *)malloc(LEN);
        p1->num=getchar();    
        head=NULL;
        n=0;
        while(p1->num!='0')
        {
                n++;
                if(n==1)
                {
                        head=p1;
                }
                else
                {
                        p2->next=p1;
                }
                p2=p1;
                p1=(struct student *)malloc(LEN);
            p1->num=getchar();
        }
        p2->next=NULL;
        return head;        
}
void print(struct student *head)
{
        struct student *p;
        p=head;
        if(head!=NULL)
        {
                do
                {
                        printf("%3c",p->num);
                        p=p->next;
                }while(p);
        }
}

                               
登录/注册后可看大图
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 13:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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