给出两个 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 的方式存储的,并且它们的每个节点只能存储 数字。 如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。 您可以假设除了数字 0 之外,这两个数都不会以 0 开头。 示例: 输入:(2 4 3) + (5 6 4) 输出 ...
分类:
其他好文 时间:
2019-08-20 16:52:47
阅读次数:
63
一、题目 1、审题: 2、题意: 两个非空链表,加法运算,有进位的 二、解答: 1、分析: 用 while 循环进行判断,同时用标志 sign 记录每一次进位。注意两个链表可能不等长。 ...
分类:
其他好文 时间:
2018-07-23 11:13:05
阅读次数:
126
第一种是高位在链表尾部a = 7->1->2b = 4->3result = 1->5->2没啥说的,注意进位,注意链表长度不一定一样#include#include /* Linked list node */struct node{ int data; struct node* ne...
分类:
其他好文 时间:
2015-10-27 21:48:32
阅读次数:
336
【066-Plus One(加一)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant di...
分类:
编程语言 时间:
2015-08-02 06:24:03
阅读次数:
159
问题:Add Two Numbers 难度-MediumYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two nu...
分类:
其他好文 时间:
2015-04-25 18:27:50
阅读次数:
130
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2014-12-12 15:01:52
阅读次数:
137