博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【leetcode】Reorder List (middle)
阅读量:5050 次
发布时间:2019-06-12

本文共 2099 字,大约阅读时间需要 6 分钟。

Given a singly linked list LL0→L1→…→Ln-1→Ln,

reorder it to: L0→LnL1→Ln-1→L2→Ln-2→…

You must do this in-place without altering the nodes' values.

For example,

Given {1,2,3,4}, reorder it to {1,4,2,3}.

 

思路:

先把链表分成两节,后半部分翻转,然后前后交叉连接。

大神的代码比我的简洁,注意分两节时用快慢指针。

大神巧妙的在最后一步融合时用了连等号

在翻转部分:大神翻转过的部分的结尾是null. 而我的方法是把结尾连接下一个待翻转的结点。

// O(N) time, O(1) space in totalvoid reorderList(ListNode *head) {    if (!head || !head->next) return;    // find the middle node: O(n)    ListNode *p1 = head, *p2 = head->next;    while (p2 && p2->next) {        p1 = p1->next;        p2 = p2->next->next;    }    // cut from the middle and reverse the second half: O(n)    ListNode *head2 = p1->next;    p1->next = NULL;    p2 = head2->next;    head2->next = NULL;    while (p2) {        p1 = p2->next;        p2->next = head2;        head2 = p2;        p2 = p1;    }    // merge two lists: O(n)    for (p1 = head, p2 = head2; p1; ) {        auto t = p1->next;        p1 = p1->next = p2;        p2 = t;    }}

 

 

我的代码

void reorderList(ListNode *head) {        int len = 0; //链表长度        ListNode * p = head;        ListNode * latterpart = head;        //找链表长度        while(p != NULL)        {            len++;            p = p->next;        }        if(len <= 2)        {            return;        }        //把链表分成两份 如1 2 3 4 5 分成 1 2 3 和 4 5        len = (len + 1) / 2;  //一半的位置        p = head;        while(--len)        {            p = p->next;        }        latterpart = p->next;        p->next = NULL;        //翻转后半部分        ListNode * plast = latterpart;        while(plast->next != NULL)        {            p = plast->next;            plast->next = p->next;            p->next = latterpart;            latterpart = p; //更新头部 每次把后面的转到最前面去        }        //交叉前后两段        p = head;        while(p != NULL && latterpart != NULL) //如果前半部分和后半部分都还有可连接的 继续        {            ListNode * tmp = p->next;            p->next = latterpart;            latterpart = latterpart->next;            p->next->next = tmp;            p = p->next->next;        }        return;    }

 

转载于:https://www.cnblogs.com/dplearning/p/4343023.html

你可能感兴趣的文章
无线通讯
查看>>
Mongodb Manual阅读笔记:CH9 Sharding
查看>>
AX2009使用NPOI导出EXCEL2007
查看>>
如何删除NSDictionary或NSArray中的NSNull
查看>>
ueditor 结合easyui使用
查看>>
thymeleaf学习笔记
查看>>
BZOJ4669抢夺(费用流+二分答案)
查看>>
[CQOI2017]老C的方块
查看>>
51nod--1459 迷宫游戏 (dijkstra)
查看>>
软件想:路线分享APP
查看>>
提高工作效率的工具[分享]
查看>>
ThreadPoolExecutor线程池原理
查看>>
PySpider HTTP 599: SSL certificate problem错误的解决方法(转)
查看>>
HDU 1677 Nested Dolls
查看>>
域渗透
查看>>
bzoj1606
查看>>
CCCC练习即感
查看>>
Microsoft AJAX Library Cheat Sheet(6):String和Object类型的扩展
查看>>
移动端bug、兼容性
查看>>
ExtjsMVC开发过程中遇到的具体问题总结
查看>>