博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
143. Reorder List
阅读量:6542 次
发布时间:2019-06-24

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

class Solution {

public:
void reorderList(ListNode* head) {
ListNode *head1 = head, *head2 = NULL;
int len = 0, count = 1;
while(head) { //遍历链表
head = head -> next;
++len;
}
head = head1;
if(len <= 2 || !head)
return;
while(count != ceil(len / 2.0)) { /*把链表切成两段h1 h2 */
head = head -> next;
++count;
}
head2 = head -> next;
head -> next = NULL;
head = head1;
head2 = reverse(head2);//reverse head2
for(ListNode *i = head1, *j = head2; i&&j; head1 = i, head2 = j) {//i和j存之后的两个链表节点  最初判断条件只有i 不是i&&j 这样导致后面调用head2 -》next时候head2可能为null越界

if(head1 -> next)

i = head1 -> next;
else
i = NULL;
head1 -> next = head2;
if(head2 -> next)
j = head2 -> next;
else
j = NULL;
head2 -> next = i;
}
return;
}
ListNode *reverse(ListNode * head) {
ListNode *t, *y = head, *r = NULL;
if(head -> next == NULL)
return head;
while(y != NULL) {
t = y -> next;
y -> next = r;
r = y;
y = t;
}
return r;
}
};

转载于:https://www.cnblogs.com/bloomingFlower/p/7739578.html

你可能感兴趣的文章
TYVJ P1046 Blast Label:dp
查看>>
linux命令--virtualenv
查看>>
11g新特性与12c新特性
查看>>
查看哪些表的哪些列含有指定字符串(如‘andy’存在哪些表的哪些列中)
查看>>
kafa单机版环境搭建
查看>>
BZOJ-3894 文理分科 最小割
查看>>
GDB 单步调试汇编
查看>>
SQLAlchemy 几种查询方式总结
查看>>
性能测试工具之安装webbench
查看>>
解决Sencha Touch 2 MVC部署App.json不被识别问题
查看>>
zabbix web端有数据但是没有图形
查看>>
[bzoj 1758][Wc2010]重建计划
查看>>
[PHP相关教程] laravel5.1学习手册[一]基本开发环境配置
查看>>
原生 JS 实现手机验证码倒计时
查看>>
关于产品运营的一些思考
查看>>
Tips For Your Maya Plugin Development
查看>>
数据库设计
查看>>
[转]ubuntu下gcc的安装与使用
查看>>
Spreading the Wealth uva 11300
查看>>
Java中重写与重载的区别
查看>>