【爆刷力扣-链表】画图自见

【leetcode 24】两两交换链表中的节点

关于cur指向

cur指向反转结点的前一结点

eg1 : (1,2) cur->dummyHead

eg2 : (3,4) cur->2

关于终止条件

奇数 偶数

操作顺序

初始时,cur指向虚拟头结点,然后进行如下三步:

操作之后,链表如下:

看这个可能就更直观一些了:

代码

伪代码

cpp 复制代码
dummyHead -> next = head;
cur = dummyHead;
while(cur -> next != NULL && cur ->next -> next != NULL){//要注意这个顺序,反过来发生空指针异常
    temp = cur ->next;
    temp1 = cur ->next ->next ->next;
    
    cur ->next = cur ->next ->next;
    cur ->next ->next = temp;
    temp ->next = temp1;
    cur = cur ->next ->next;
}
return dummyHead ->next;

代码

cpp 复制代码
class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        ListNode* dummyHead = new ListNode(0); // 设置一个虚拟头结点
        dummyHead->next = head; // 将虚拟头结点指向head,这样方便后面做删除操作
        ListNode* cur = dummyHead;
        while(cur->next != nullptr && cur->next->next != nullptr) {
            ListNode* tmp = cur->next; // 记录临时节点
            ListNode* tmp1 = cur->next->next->next; // 记录临时节点

            cur->next = cur->next->next;    // 步骤一
            cur->next->next = tmp;          // 步骤二
            cur->next->next->next = tmp1;   // 步骤三

            cur = cur->next->next; // cur移动两位,准备下一轮交换
        }
        ListNode* result = dummyHead->next;
        delete dummyHead;
        return result;
    }
};
  • 时间复杂度:O(n)
  • 空间复杂度:O(1)

【leetcode 160】相交链表

cpp 复制代码
class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        ListNode* curA = headA;
        ListNode* curB = headB;
        int lenA = 0;
        int lenB = 0;
        while(curA){
            lenA++;
            curA = curA ->next;
        }
        while(curB){
            lenB++;
            curB = curB -> next;
        }
        ListNode* longList = headA;
        ListNode* shortList = headB;
        if(lenB > lenA){
            longList = headB;
            shortList = headA;
        }

        int gap = abs(lenA - lenB);
        while(gap--){
            longList = longList -> next;
        }
        while(longList){
            if(longList == shortList){
                return longList;
            }
            longList = longList ->next;
            shortList = shortList -> next;
        }
        return NULL;
    }
};
相关推荐
CoovallyAIHub14 分钟前
方案 | 动车底部零部件检测实时流水线检测算法改进
深度学习·算法·计算机视觉
CoovallyAIHub17 分钟前
方案 | 光伏清洁机器人系统详细技术实施方案
深度学习·算法·计算机视觉
lxmyzzs20 分钟前
【图像算法 - 14】精准识别路面墙体裂缝:基于YOLO12与OpenCV的实例分割智能检测实战(附完整代码)
人工智能·opencv·算法·计算机视觉·裂缝检测·yolo12
洋曼巴-young22 分钟前
240. 搜索二维矩阵 II
数据结构·算法·矩阵
楼田莉子2 小时前
C++算法题目分享:二叉搜索树相关的习题
数据结构·c++·学习·算法·leetcode·面试
pusue_the_sun2 小时前
数据结构——栈和队列oj练习
c语言·数据结构·算法··队列
大锦终2 小时前
【算法】模拟专题
c++·算法
Xの哲學3 小时前
Perf使用详解
linux·网络·网络协议·算法·架构
想不明白的过度思考者3 小时前
数据结构(排序篇)——七大排序算法奇幻之旅:从扑克牌到百亿数据的魔法整理术
数据结构·算法·排序算法
小七rrrrr3 小时前
动态规划法 - 53. 最大子数组和
java·算法·动态规划