Odd Even Linked List
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 1:
Example 2:
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 ...
这道题无论node的数量是奇数还是偶数,最后退出while循环的时候,odd指向的肯定是偶数node的最后一个,因为一开始记录下来了even node的起始位置,所以最后将他们连在一起就可以了,不过我写的while循环太麻烦了,其实只需要考虑even和even的下一个是不是空就好了
Time complexity : O(n)O(n). There are total nn nodes and we visit each node once.
Space complexity : O(1)O(1). All we need is the four pointers.
Last updated