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

369. Plus One Linked List

时间:2016-07-17 14:09:22      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

    /*
     * 369. Plus One Linked List
     * 2016-7-16 by Mingyang
     * 直接先reverse,做完了再reverse,屌丝代码,未优化,就这么样吧,哈哈
     */
    public static ListNode plusOne(ListNode head) {
        if(head==null)
          return null;
        head=reverseList(head);
        ListNode pre=new ListNode(-1);
        pre.next=head;
        ListNode run=pre;
        boolean isOwn=false;
        while(run.next!=null){
            if(run.next.val==9){
                run.next.val=0;
                run=run.next;
                isOwn=true;
            }else{
               isOwn=false;
               run.next.val=run.next.val+1;
               break;
            }
        }
        if(isOwn){
            run.next=new ListNode(1);
        }
        head=reverseList(pre.next);
        return head;
    }

 

369. Plus One Linked List

标签:

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

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