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

24. Swap Nodes in Pairs

时间:2016-04-17 06:47:22      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

    /*
     * 24. Swap Nodes in Pairs 
     * 11.25 by Mingyang
     * 直接强行换
     */
     public ListNode swapPairs(ListNode head) {
            if(head==null)
              return null;
            ListNode pre=new ListNode(-1);
            pre.next=head;
            ListNode res=pre;
            ListNode run=head;
            while(run!=null&&run.next!=null){
                ListNode temp=run.next;
                pre.next=temp;
                run.next=temp.next;
                temp.next=run;
                pre=run;
                run=run.next;
            }
            return res.next;
        }

 

24. Swap Nodes in Pairs

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5400178.html

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