C++单链表倒置-头插法+递归法

// 单链表倒置
#include <iostream>
#include <functional>
#include <thread>
using namespace std;

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

class ListInversion
{
private:
    struct Node *head;
    void Func(struct Node *p);

public:
    ListInversion();    // 构造函数
    void recursion();   // 递归
    void headInsert();  // 头插法
    void print();
};

ListInversion::ListInversion()
{
    struct Node *temp, *p;
    p = new struct Node;
    p->data = 0;
    p->next = nullptr;
    head = p;
    for (int i = 1; i < 6; i++)
    {
        temp = new struct Node;
        temp->data = i;
        temp->next = nullptr;
        p->next = temp;
        p = temp;
    }
}
void ListInversion::print()
{
    struct Node *temp = head;
    while (temp != nullptr)
    {
        cout << temp->data << " ,";
        temp = temp->next;
    }
}
void ListInversion::Func(struct Node *p)
{
    static int flg = 0;
    if(p->next->next != nullptr)    
    {
        Func(p->next);
    }
    // 标记新的头节点
    if(flg == 0)
    {
        head = p->next;
        flg = 1;
    }
    p->next->next = p;
    p->next = nullptr;
}
void ListInversion::recursion()
{
    struct Node *temp = head;
    Func(temp);
}

void ListInversion::headInsert()
{
    // 维护头节点
    struct Node *p1 = head->next, *p2 = p1;
    int flg = 0; // 标记头节点
    while (p1 != nullptr)
    {
        if(flg == 0)
        {
            head->next = nullptr;
            flg = 1;
        }
        p1 = p1->next;
        p2->next = head;
        head = p2;
        p2 = p1;
    }
}

int main()
{
    ListInversion l;
    l.print();
    cout << endl;
    l.recursion();
    l.print();
    cout << endl;
    l.headInsert();
    l.print();
    system("pause");
    exit(0);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

橙子砰砰枪

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

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

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

打赏作者

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

抵扣说明:

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

余额充值