leetcode中等328奇偶链表
Posted qq_40707462
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode中等328奇偶链表相关的知识,希望对你有一定的参考价值。
/**
* Definition for singly-linked list.
* public class ListNode
* int val;
* ListNode next;
* ListNode()
* ListNode(int val) this.val = val;
* ListNode(int val, ListNode next) this.val = val; this.next = next;
*
*/
class Solution
public ListNode oddEvenList(ListNode head)
if(head==null || head.next==null) return head;
ListNode odd=head,evenhead=head.next,even=head.next;
while(odd.next!=null && even.next!=null)
odd.next=even.next;
odd=odd.next;
even.next=odd.next;
even=even.next;
odd.next=evenhead;
return head;
以上是关于leetcode中等328奇偶链表的主要内容,如果未能解决你的问题,请参考以下文章