小曹网络 发表于 2020-11-20 17:12:07

请求大神帮我解决这个问题

编写程序,实现链表的创建和遍历。输入a,b,c,d,e,f六个字符作为结点的数据,创建具有六个数据元素的链表,然后实现输出链表结点中的数据元素值。要求有交互界面,输入1为创建链表,输入0为退出程序,输入2为显示链表中的数据元素。   希望大神能给我个完整的C语言代码

a327190489 发表于 2020-11-20 17:12:08

#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);
        }
}

a327190489 发表于 2020-11-20 18:21:57

不知道和你的要求一样不

a327190489 发表于 2020-11-20 18:23:40

图片

本帖最后由 a327190489 于 2020-11-20 18:28 编辑

https://s3.ax1x.com/2020/11/20/DQIhwQ.png

小曹网络 发表于 2020-11-20 21:43:56

a327190489 发表于 2020-11-20 17:12


谢谢兄弟
页: [1]
查看完整版本: 请求大神帮我解决这个问题