zoukankan      html  css  js  c++  java
  • 第1章第2节练习题2 非递归删除指定结点

    问题描写叙述

    在带头结点的单链表L中。删除全部值为x的结点,并释放其空间,假设值为x的结点不唯一,试编写算法实现以上的操作

    算法思想

    使用指针p指向数据域为x的结点。使用指针pre指向指针p所指结点的前驱结点,从前向后进行遍历。假设指针p指向的结点的数据域为x,则删除。假设指针p指向的结点的数据域不为x,继续向后遍历就可以。

    算法描写叙述

    void DelNodeX(LNode *head, ElemType x)
    {
        LNode *pre=head;
        LNode *p=head->next;
        while(p!=NULL){
            if(p->data==x){
                pre->next=p->next;
                free(p);
                p=pre->next;
            }else{
                pre=p;
                p=p->next;
            }
        }
    }

    详细代码见附件。


    附件

    #include<stdio.h>
    #include<stdlib.h>
    typedef int ElemType;
    typedef struct LNode{
        ElemType data;
        struct LNode *next;
    }LNode, *LinkList;
    LinkList CreatList(LNode*);
    void DelNodeX(LNode*, ElemType);
    void Print(LNode*);
    
    int main(int argc,char* argv[])
    {
        LNode *head;
        head=(LNode*)malloc(sizeof(LNode));
        head->next=NULL;
        head=CreatList(head);
        Print(head);
        DelNodeX(head,3);
        Print(head);
        return 0;
    }
    //头插法建立单链表
    LinkList CreatList(LNode *head)
    {
        LNode *L;
        ElemType x;
        scanf("%d",&x);
    
        while(x!=999){
            L=(LNode*)malloc(sizeof(LNode));
            L->data=x;
    
            L->next=head->next;
            head->next=L;
    
            scanf("%d",&x);
        }
    
        return head;
    }
    //删除值为x的结点
    void DelNodeX(LNode *head, ElemType x)
    {
        LNode *pre=head;
        LNode *p=head->next;
        while(p!=NULL){
            if(p->data==x){
                pre->next=p->next;
                free(p);
                p=pre->next;
            }else{
                pre=p;
                p=p->next;
            }
        }
    }
    //打印全部结点
    void Print(LNode *head)
    {
        LNode *p=head->next;
        while(p){
            printf("%4d",p->data);
            p=p->next;
        }
        printf("
    ");
    }
  • 相关阅读:
    maven
    git 流程
    配置错误:不能在此路径中使用此配置节。如果在父级别上锁定了该节,便会出现这种情况。锁定是默认设置的(
    ui选型
    重构
    http网站上传文件大小问题【没测试过】
    分页sql写法【只用最新的】
    dom响应事件
    html多个水平并列组件自适应等高的做法
    js写法【3】
  • 原文地址:https://www.cnblogs.com/claireyuancy/p/7105672.html
Copyright © 2011-2022 走看看