我是靠谱客的博主 顺利画板,最近开发中收集的这篇文章主要介绍单链表删除某区间的值,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>
//#include"head.h"
#include<string.h>
using namespace std;

struct node
{
    int data;
    node* next;
};

node* head;
int len;

void creat()
{
    head=NULL;
    node* r=NULL;
    int x;
    for(int i=0;i<len;i++)
    {
        cin>>x;
        node* p=new node;
        p->data=x;
        if(head==NULL)
        {
            head=p;
        }
        else
        {
            r->next=p;
        }
        r=p;
    }
    r->next=NULL;
    node* newhead=new node;
    newhead->next=head;
    head=newhead;
}

int remove( const int& left, const int& right )
{
    node* cur=head->next;
    node* pre=head;
    int count=0;
    while(cur)
    {

        if(cur->data>=left&&cur->data<=right)
        {
            count++;
            node* q=cur;
            pre->next=cur->next;
            cur=cur->next;
            delete q;
        }
        else{
             pre=cur;
       cur=cur->next;
        }
    }
    return count;
}

void show_all()
{
    node* p=head->next;
    while(p)
    {
        cout<<p->data;
          if(p->next)
            cout<<' ';
      p=p->next;
    }
    cout<<endl;
}

void discard()
{
    node* p=head->next;
    while(p)
    {
        node* q=p;
        p=p->next;
        delete q;
    }
}
int main()
{
    int T ;
    cin>>T;
    while(T--)
    {
        int left;
        int right;
        cin>>left>>right>>len;
        creat();
        int ret=remove(left,right);
        if(ret!=len)
        {
            cout<<len-ret<<endl;
            show_all();
        discard();
        }
    }
    return 0;
}

最后

以上就是顺利画板为你收集整理的单链表删除某区间的值的全部内容,希望文章能够帮你解决单链表删除某区间的值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部