绵羊吃了我的玫瑰花 2021-10-09 17:08 采纳率: 0%
浏览 11
已结题

链表c++ link-list 在做对字符串做reverse时,为啥我的程序只能输出前两个字符呢?


#include"LinkedList.h"
#include<iostream>
using namespace std;
int main()
{

LList<int> L1;
cout<<"The current position is:"<<L1.currPos()<<endl;
cout<<"The length of L1 is:"<<L1.length()<<endl;
L1.append(2);
L1.append(23);
L1.append(15);
L1.append(5);
L1.append(9);
cout<<"Now the List is:"<<endl;
L1.printList();
L1.reverse();
cout<<"After reversing,now the list is:"<<endl;
L1.printList();
    
}

```c++
void reverse()
    {
        Link<E> *temp1;
        Link<E> *temp2;
        Link<E> *temp3;
        Link<E> *temp4;
        temp4=head->next;
        temp1=head->next;
        temp2=temp1->next;
        head->next=NULL;
        tail->next=NULL;
        //cout<<"tail->next:"<<tail->next<<endl;
        while(temp2)
        {
            temp1->next=NULL;
            temp3=temp2->next;
            temp2->next=temp1;
            temp1=temp2;
            temp2=temp3;
            //cout<<"zhixingyici"<<endl;
            //cout<<"temp1="<<temp1->element<<endl;
                //if(temp2) cout<<"temp2="<<temp2->element<<endl;
        }
        //cout<<"chuxunhuan"<<endl;
        head->next=temp1;
        //cout<<"head->next"<<head->next->element<<endl;
        tail=temp4;
        //cout<<"tail"<<tail->element<<endl;

        cout<<"In the reverse:"<<endl;
        Link<E> *temp;
        temp=head->next;
        cout<<"<";
        for(;temp<=curr;temp=temp->next)
        {
            cout<<temp->element<<",";
        }
        cout<<"|";
        for(temp=curr->next;temp!=tail;)
        {
            cout<<temp->element<<",";
            temp=temp->next;
            //cout<<"temp->next:"<<temp->element<<endl;
        }
        cout<<tail->element<<">"<<endl;



    }

```

  • 写回答

0条回答 默认 最新

    报告相同问题?

    问题事件

    • 系统已结题 10月17日
    • 创建了问题 10月9日

    悬赏问题

    • ¥25 LT码在高斯信道下的误码率仿真
    • ¥45 渲染完成之后将物体的材质贴图改变,自动化进行这个操作
    • ¥15 yolov5目标检测并显示目标出现的时间或视频帧
    • ¥15 电视版的优酷可以设置电影连续播放吗?
    • ¥50 复现论文;matlab代码编写
    • ¥30 echarts 3d地图怎么实现一进来页面散点数据和卡片一起轮播
    • ¥15 数字图像的降噪滤波增强
    • ¥15 心碎了,为啥我的神经网络训练的时候第二个批次反向传播会报错呀,第一个批次都没有问题
    • ¥15 MSR2680-XS路由器频繁卡顿问题
    • ¥15 VB6可以成功读取的文件,用C#读不了