zoukankan      html  css  js  c++  java
  • LeetCode 445.两数相加 II

    题目传送门:两数相加 II


    给你两个非空链表来代表两个非负整数。数字最高位位于链表开始位置。它们的每个节点只存储一位数字。将这两数相加会返回一个新的链表。

    你可以假设除了数字 0 之外,这两个数字都不会以零开头。

    要求:不能修改原始链表。

    示例:

    输入:(7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4)
    输出:7 -> 8 -> 0 -> 7
    

    因为我们把链表的每一位相加与我们遍历链表的顺序是相反的,我们可以借助栈来解决问题。

    时间复杂度:O(max(m,n)),其中 m 与 n 分别为两个链表的长度。我们需要遍历每个链表。

    空间复杂度:O(m+n),其中 m 与 n 分别为两个链表的长度。这是我们把链表内容放入栈中所用的空间。

    /**
     * Definition for singly-linked list.
     * public class ListNode {
     *     int val;
     *     ListNode next;
     *     ListNode(int x) { val = x; }
     * }
     */
    class Solution {
        public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
            Stack<Integer> stack1 = new Stack<>();
            Stack<Integer> stack2 = new Stack<>();
            while(l1 != null) {
                stack1.push(l1.val);
                l1 = l1.next;
            }
            while(l2 != null) {
                stack2.push(l2.val);
                l2 = l2.next;
            }
    
            int carry = 0;
            ListNode head = null;
            while(!stack1.isEmpty() || !stack2.isEmpty() || carry > 0) {
                int sum = carry;
                sum += stack1.isEmpty()? 0:stack1.pop();
                sum += stack2.isEmpty()? 0:stack2.pop();
                ListNode node = new ListNode(sum % 10); // sum操作就是为了保留这个节点个位数的值
    
                //下面两步操作为头插法创建链表
                node.next = head;
                head = node;
    
                //判断是否有进位,如果有进位的话下一次sum的值就为1
                carry = sum / 10;
            }
            return head;
        }
    }
    
    如果博客内容有误,请联系我修改指正,非常感谢! 如果觉得这篇博客对你有用的话,就帮我点个小小的赞吧! 一起加油鸭, 越努力,越幸运!!!
  • 相关阅读:
    mybatis05--多条件的查询
    mybatis04--Mapper动态代理实现
    mybatis03--字段名和属性名不一致
    mybatis02--增删改查
    myBatis01
    hibernate12--缓存
    hibernate11--Criteria查询
    hibernate10--命名查询
    hibernate09--连接查询
    (转载)閱讀他人的程式碼(5)找到程式入口,再由上而下抽絲剝繭
  • 原文地址:https://www.cnblogs.com/studywithme/p/13556506.html
Copyright © 2011-2022 走看看