链表11111

    if(ptr->num<=ptr2->num){
                if(head==ptr2) head=ptr;
                else ptr1->next=ptr;
                ptr->next=ptr2;
            }
            else{
                ptr2->next=ptr;
                ptr->next=NULL;
            }
        }
        return head;
}
//删除操作
struct stud_node *DeleteDoc(struct stud_node *head,int num)
{
    struct stud_node *ptr1,*ptr2;
    //要被删除节点为表头结点
    while(head!=NULL && head->num==num){
        ptr2=head;
        head=head->next;
        free(ptr2);
    }
    if(head==NULL){
        return NULL;
    }
    //要被删除节点为非表头节点
    ptr1=head;
    ptr2=head->next;//从表头的下一节点搜索所有符合删除的节点
    while(ptr2!=NULL){
        if(ptr2->num==num){
            ptr1->next=ptr2->next;
            free(ptr2);
        }
        else{
            ptr1=ptr2;
            ptr2=ptr1->next;
        }
    }
        return head;
}
//遍历操作
void Print_Stu_Doc(struct stud_node *head)
{
    struct stud_node *ptr;
    if(head==NULL){
        printf("\n No Recordsn \n");
        return;
    }
    printf("\nThe students'Records Are:\n");
    printf("Num\t Name\t Score\n");
    for(ptr=head;ptr!=NULL;ptr=ptr->next){
        printf("%d\t %s\t %d\n",ptr->num,ptr->name,ptr->score);
    }
}
 

  • 4
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

代码骑士one

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值