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

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

https://leetcode.com/problems/odd-even-linked-list/description/ Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes. You should try to do it in place. The program should run in O(1) space complexity and O(nodes) time complexity. Example: Given 1->2->3->4->5->NULL, return 1->3->5->2->4->NULL. Note: The relative order inside both the even and odd groups should remain as it was in the input. The first node is considered odd, the second node even and so on ...
1  public ListNode oddEvenList(ListNode head) { 2         if (head == null || head.next == null) return head; 3         ListNode oddCurr = head; 4         ListNode evenHead = head.next ; 5         ListNode evenCurr = head.next; 6         /* 7          1->2->3->4->5->NULL 8          co ce 9             eh10          1->3     2->411               ->12          * */13         14         /*15         even is always one node ahead so:16          evenCurr != null == oddCurr.next != null17          evenCurr.next != null == oddCurr.next.next != null18 19         重要!when evenCurr is at 4, evenCurr.next = 5 != null20         */21         while (evenCurr != null && evenCurr.next != null){22             oddCurr.next = oddCurr.next.next ;23             oddCurr = oddCurr.next;24             //4->5.next=null 4->null25             evenCurr.next = evenCurr.next.next ;26             evenCurr = evenCurr.next;27         }28         //奇数结尾指向偶数的头29         oddCurr.next = evenHead ;30         return head;31     }

千万注意,不要遍历两遍 什么 while(oddcurr)  while(evencurr)  因为underline 的链表是一个,所以遍历第一遍之后就已经把 next 的关系搞混了, 后面那个遍历就不准确了。

 

转载于:https://www.cnblogs.com/davidnyc/p/8457786.html

你可能感兴趣的文章
POJ-4001(3入口のBFS)
查看>>
【转】聚集索引和非聚集索引的区别
查看>>
[C++知识点]2015.4.18
查看>>
第五次作业
查看>>
【转】mac os 安装php
查看>>
关于数据库归档
查看>>
yun install java
查看>>
Android -- OkHttp的简单使用和封装
查看>>
POJ 1991 DP
查看>>
Hibernate 分组查询 子查询 原生SQL
查看>>
软件工程_第二次作业
查看>>
有关vue的一点点收获
查看>>
数据结构之栈与队列
查看>>
centos常用网络管理命令
查看>>
mysql主从配置(基于mysql5.5.x)
查看>>
mysql表时间戳字段设置
查看>>
如何将本地vue项目上传到github
查看>>
极验验证码示例
查看>>
# 基于Gitolite搭建Git Server - 支持SSH&HTTP
查看>>
C# DllImport的用法
查看>>