小曹网络 发表于 2020-11-20 16:26:12

大神求救

编写程序,实现链表的创建和遍历。输入a,b,c,d,e,f六个字符作为结点的数据,创建具有六个数据元素的链表,然后实现输出链表结点中的数据元素值。要求有交互界面,输入1为创建链表,输入0为退出程序,输入2为显示链表中的数据元素。               不会写这个,希望有大神能帮忙解决

a327190489 发表于 2020-11-20 16:56:19

输入0退出程序是指结束对链表的输入吗?

小曹网络 发表于 2020-11-20 17:02:35

a327190489 发表于 2020-11-20 16:56
输入0退出程序是指结束对链表的输入吗?

嗯是的

a327190489 发表于 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);
      }
}

https://s3.ax1x.com/2020/11/20/DQIhwQ.png
页: [1]
查看完整版本: 大神求救