鱼C论坛

 找回密码
 立即注册
查看: 828|回复: 2

[已解决]对于链表的疑惑

[复制链接]
发表于 2020-12-17 12:28:43 From FishC Mobile | 显示全部楼层 |阅读模式

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

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

x
    1.假设数组里有10个学生成绩,用函数完成建立链表,用数组名做形参,返回链表的头指针;对链表按成绩从高到低排序;实现可以删除成绩为某个特定值的结点;插入一个学生成绩。
    2.用结构体数组模拟链表。分为指针域和下标域,用不交换数据的方式,也就是改下标来实现一组学生成绩的从大到小排列。
    想了一上午还是各种错误,头大了,唉╯﹏╰
最佳答案
2020-12-17 15:30:30
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>//头文件 
#define LEN sizeof(struct data)//student结构的大小
struct data *creat();//创建链表 
void output(struct data *head);//打印链表
void sort(struct data *head);//排序 
struct data *insert(struct data *,struct data *);//插入结点 
struct data *remove(struct data*head,int n);//删除节点 
int m;
struct data{
        int n;
        struct data *next;
}; //定义结构数组 
int N;//全局变量,用来记录存放了多少数据。 
int main()//主函数 
{
        int remove_n;//定义存放需要删除的数值的变量· 
        struct data *stu,node;//声明结构指针变量 
        stu=creat();//函数返回链表第一个节点的地址 
        output(stu);//打印输出链表 
        printf("\n");//换行 
        system("pause"); 
        sort(stu);//排序 
        printf("The result of ascending sorting:\n");
        output(stu);//升序输出 
        printf("\nPlease enter the number to insert\n");
        scanf("%d",&node.n);
        stu=insert(stu,&node);
        output(stu);
        printf("\nPlease enter the number to delete\n");
        scanf("%d",&remove_n);
        stu=remove(stu,remove_n);
        output(stu);
        return 0;
}
struct data *creat()//创建链表函数 
{
        struct data *head;
        struct data *p1,*p2;
        p1=p2=(struct data*)malloc(LEN);//开辟一个长度为LEN的内存区 
    p1->n=0;
        head=NULL;//初始化头指针 
        N=0;//初始化结点个数 
        printf("Stop typing when -1 is entered\n");
        while(p1->n!=-1)
        {
                N++;
                if(1==N)
                {
                        head=p1;
                }
                else
                {
                        p2->next=p1;//把p1所指的结点连接在p2所指的结点后面 
                }
                p2=p1;
                p1=(struct data*)malloc(LEN);
                printf("Please enter a number:");
                scanf("%d",&p1->n);
        }
        p2->next=NULL;//结束 
        return head;//使函数返回头指针 
}
void output(struct data *head)//定义打印输出链表函数 
{
        struct data *p;//在函数中定义struct data类型的变量p 
        p=head->next;//使p指向第一个结点 
        if(NULL!=head)//若不是空表 
        {
                do
                {
                        printf("%d ",p->n);//输出一个结点中的数值 
                        p=p->next;//p指向下一个结点 
                }while(p!=NULL);//当p不是空地址 
        }
}
void sort(struct data *head)//定义排序函数 
{
        struct data *p,*q,*r,*t;
        int flag = 1;
        while(flag){
                p = head;
                q = head->next;
                flag = 0;

                while(q != NULL){//循环终止条件 
                        r = q->next;
                        if(r == NULL){//循环终止条件 
                                break;
                        }else if(q->n > r->n){
                                t = r->next;
                                q->next = t; 
                                r->next = q;
                                p->next = r;
                                //重新排序 
                                p = r;
                                q = p->next;
                                r = q->next;
                                //指向整体后移便于接下来排序 
                                flag = 1;
                        }else{
                                p = q;
                                q = p->next;//指向后移 
                        }
                }
        }
}
struct data *insert(struct data *head,struct data *stud)//定义插入结点函数 
{
        struct data *p0,*p1,*p2;
        p1=head;
        p0=stud;
        if(head==NULL)
        {
                head=p0;p0->next=NULL;
        }
        else
        {
                while((p0->n>p1->n)&&(p1->next!=NULL)){
                        p2=p1;
                        p1=p1->next;
                }
                if(p0->n<=p1->n)
                {
                        if(head==p1)
                        head=p0;
                        else 
                        p2->next=p0;
                        p0->next=p1;
                }
                else
                {p1->next=p0;p0->next=NULL;
                }
        }
        m=m+1;
        return(head);
}
struct data *remove(struct data*head,int n)//定义删除结点函数 
{
        struct data *p1,*p2;
        if(head==NULL)
        {
                printf("\nlist null! \n");
                return(head);
        }
        p1=head;
        while(n!=p1->n&&p1->next!=NULL)
        {
                p2=p1;p1=p1->next;
        }
        if(n==p1->n)
        {
                if(p1==head)head=p1->next;
                else p2->next=p1->next;
                printf("delete:%d\n",n);
                n=n-1;
        }
        else printf("%d not been found!\n",n);
        return(head);
}
前几天学校有个类似的作业,你看看这个行不?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-17 15:30:30 | 显示全部楼层    本楼为最佳答案   
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>//头文件 
#define LEN sizeof(struct data)//student结构的大小
struct data *creat();//创建链表 
void output(struct data *head);//打印链表
void sort(struct data *head);//排序 
struct data *insert(struct data *,struct data *);//插入结点 
struct data *remove(struct data*head,int n);//删除节点 
int m;
struct data{
        int n;
        struct data *next;
}; //定义结构数组 
int N;//全局变量,用来记录存放了多少数据。 
int main()//主函数 
{
        int remove_n;//定义存放需要删除的数值的变量· 
        struct data *stu,node;//声明结构指针变量 
        stu=creat();//函数返回链表第一个节点的地址 
        output(stu);//打印输出链表 
        printf("\n");//换行 
        system("pause"); 
        sort(stu);//排序 
        printf("The result of ascending sorting:\n");
        output(stu);//升序输出 
        printf("\nPlease enter the number to insert\n");
        scanf("%d",&node.n);
        stu=insert(stu,&node);
        output(stu);
        printf("\nPlease enter the number to delete\n");
        scanf("%d",&remove_n);
        stu=remove(stu,remove_n);
        output(stu);
        return 0;
}
struct data *creat()//创建链表函数 
{
        struct data *head;
        struct data *p1,*p2;
        p1=p2=(struct data*)malloc(LEN);//开辟一个长度为LEN的内存区 
    p1->n=0;
        head=NULL;//初始化头指针 
        N=0;//初始化结点个数 
        printf("Stop typing when -1 is entered\n");
        while(p1->n!=-1)
        {
                N++;
                if(1==N)
                {
                        head=p1;
                }
                else
                {
                        p2->next=p1;//把p1所指的结点连接在p2所指的结点后面 
                }
                p2=p1;
                p1=(struct data*)malloc(LEN);
                printf("Please enter a number:");
                scanf("%d",&p1->n);
        }
        p2->next=NULL;//结束 
        return head;//使函数返回头指针 
}
void output(struct data *head)//定义打印输出链表函数 
{
        struct data *p;//在函数中定义struct data类型的变量p 
        p=head->next;//使p指向第一个结点 
        if(NULL!=head)//若不是空表 
        {
                do
                {
                        printf("%d ",p->n);//输出一个结点中的数值 
                        p=p->next;//p指向下一个结点 
                }while(p!=NULL);//当p不是空地址 
        }
}
void sort(struct data *head)//定义排序函数 
{
        struct data *p,*q,*r,*t;
        int flag = 1;
        while(flag){
                p = head;
                q = head->next;
                flag = 0;

                while(q != NULL){//循环终止条件 
                        r = q->next;
                        if(r == NULL){//循环终止条件 
                                break;
                        }else if(q->n > r->n){
                                t = r->next;
                                q->next = t; 
                                r->next = q;
                                p->next = r;
                                //重新排序 
                                p = r;
                                q = p->next;
                                r = q->next;
                                //指向整体后移便于接下来排序 
                                flag = 1;
                        }else{
                                p = q;
                                q = p->next;//指向后移 
                        }
                }
        }
}
struct data *insert(struct data *head,struct data *stud)//定义插入结点函数 
{
        struct data *p0,*p1,*p2;
        p1=head;
        p0=stud;
        if(head==NULL)
        {
                head=p0;p0->next=NULL;
        }
        else
        {
                while((p0->n>p1->n)&&(p1->next!=NULL)){
                        p2=p1;
                        p1=p1->next;
                }
                if(p0->n<=p1->n)
                {
                        if(head==p1)
                        head=p0;
                        else 
                        p2->next=p0;
                        p0->next=p1;
                }
                else
                {p1->next=p0;p0->next=NULL;
                }
        }
        m=m+1;
        return(head);
}
struct data *remove(struct data*head,int n)//定义删除结点函数 
{
        struct data *p1,*p2;
        if(head==NULL)
        {
                printf("\nlist null! \n");
                return(head);
        }
        p1=head;
        while(n!=p1->n&&p1->next!=NULL)
        {
                p2=p1;p1=p1->next;
        }
        if(n==p1->n)
        {
                if(p1==head)head=p1->next;
                else p2->next=p1->next;
                printf("delete:%d\n",n);
                n=n-1;
        }
        else printf("%d not been found!\n",n);
        return(head);
}
前几天学校有个类似的作业,你看看这个行不?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-17 18:39:22 From FishC Mobile | 显示全部楼层
我们也是,太感谢了,我这块学的不扎实,还要多练练。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-6 20:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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