Leetcode 24. 两两交换链表中的节点

本文介绍了如何使用C++解决链表中每两个节点之间的值进行交换的问题,通过定义ListNode结构并实现Solution类的swapPairs函数来处理链表指针的翻转。
摘要由CSDN通过智能技术生成

还是很简单的链表链接问题,不过中间我设置指针翻转的时候还是出了一些问题。值得小心

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if(head == nullptr || head->next == nullptr){
            return head;
        }else{
            ListNode* _head = new ListNode;
            _head->next = head;
            ListNode* cur;
            ListNode* _next;
            head = _head;
            cur = head->next;
            _next = cur->next;
            while(cur!=nullptr && cur->next != nullptr){
                cur = head->next;
                _next = cur->next;
                cur->next = _next->next;
                head->next = _next;
                _next->next = cur;
                head = cur;
                cur = head->next;
                if(cur == nullptr || cur->next == nullptr){
                    return _head->next;
                }else{
                    _next = cur->next;
                }
            }
            
        }
        return head;
    }
};

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值