题解 | #链表的奇偶重排#

链表的奇偶重排

http://www.nowcoder.com/practice/02bf49ea45cd486daa031614f9bd6fc3

import java.util.*;

/*

  • public class ListNode {
  • int val;
  • ListNode next = null;
  • public ListNode(int val) {
  • this.val = val;
    
  • }
  • } */

public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ public static ListNode oddEvenList(ListNode head) { // write code here List jiList = new ArrayList<>(); List ouList = new ArrayList<>(); int nowWei = 1; while (head != null) { if (nowWei % 2 == 0) { ouList.add(head); } else { jiList.add(head); } head = head.next; nowWei++; }

        ListNode ya = new ListNode(-1);
        head = ya;
        for (ListNode temp : jiList) {
            head.next = new ListNode(temp.val);
            head = head.next;
        }
        for (ListNode temp : ouList) {
            head.next = new ListNode(temp.val);
            head = head.next;
        }

        return ya.next;
    }

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 19:05
点赞 评论 收藏
分享
11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务