码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]86. Partition List分离链表

时间:2018-02-08 14:18:41      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:tno   操作   pos   div   body   意思   新建   使用   log   

/*
    这个题是medium的意思应该是用双指针的方法做,如果使用下边的新建链表的方法,就是easy的题目了
   双指针会用到很多链表的相连操作
     */
    public ListNode partition(ListNode head, int x) {
        ListNode s = null;
        ListNode b = null;
        ListNode temp=null,res=null;
        while (head!=null)
        {
            int cur = head.val;
            if (head.val<x)
            {
                if (s==null) {
                    s =  new ListNode(cur);
                     res = s;
                }
                else {
                    s.next = new ListNode(cur);
                    s = s.next;
                }
            }
            else
            {
                if (b==null) {
                    b =  new ListNode(cur);
                     temp = b;
                }
                else {
                    b.next = new ListNode(cur);
                    b = b.next;
                }
            }
            head = head.next;
        }
        if (s==null) return temp;
        s.next = temp;
        return res;
    }

 

[LeetCode]86. Partition List分离链表

标签:tno   操作   pos   div   body   意思   新建   使用   log   

原文地址:https://www.cnblogs.com/stAr-1/p/8431234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!