328 add two number
class Solution {
public ListNode oddEvenList(ListNode head) {
if(head==null) return null;
ListNode odd=head,even=head.next,evenHead=even;
while(even!=null&&even.next!=null){
odd.next=even.next;
odd=odd.next;
even.next=odd.next;
even=even.next;
}
odd.next=evenHead;
return head;
}
}
浙公网安备 33010602011771号