翻转链表,死过一次,再死就是猪

#include<iostream>
using namespace std;

typedef struct node
{
    int data;
    node* next;
};
struct node* reves(struct node* head)
{
    node* pre, *cur, *pp;
    pre = head;
    cur = head->next;
    pre->next = NULL;
    while (cur!=NULL)
    {
        pp = cur->next;
        cur->next = pre;
        pre = cur;
        cur = pp;
    }
    return pre;
}
int main()
{
    /*构造链表 5,7,3,11,1,7
    然后调用reverse逆置,再打印出来*/
    node* a = new node;
    node* head = a;//记录头结点
    a->next = NULL;
    int dt;
    int i = 2;
    cin >> i;
    while (i--)
    {
        cin >> dt;
        node* p = new node;
        p->data = dt;
        p->next = NULL;
        a->next = p;
        a = p;
    }
    
    node* res = reves(head->next);
    while (res != NULL)
    {
        cout << res->data << " ";
        res=res->next;
    }

    return 0;

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

yyd__

你的打赏和鼓励我会珍惜!

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

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

打赏作者

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

抵扣说明:

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

余额充值