You are given two non-empty linked lists representing two non-negative integers. 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 linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself
您将获得两个非空链表,表示两个非负整数。 数字以相反的顺序存储,每个节点包含一个数字。 添加两个数字并将其作为链接列表返回。
一.python代码
1 | class Solution: |
二.C++
1 | /** |
链表
将一个链表赋值给另一个,他们的next地址指向永远相同。
调用一个链表的next,就是将链表后面所有的都打印出来。
链表一定要赋值了,才有next的地址,不然链表的next就是空。