国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

Leetcode Linked List Problem 鏈表問題合集

2019-11-10 22:18:03
字體:
供稿:網(wǎng)友

1. Leet Code OJ 2. Add Two Numbers

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.

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) Output: 7 -> 0 -> 8

您將獲得兩個非空鏈接列表,表示兩個非負(fù)整數(shù)。 數(shù)字以相反的順序存儲,并且它們的每個節(jié)點包含單個數(shù)字。 添加兩個數(shù)字并將其作為鏈接列表返回。

您可以假定這兩個數(shù)字不包含任何前導(dǎo)零,除了數(shù)字0本身。

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

代碼:

/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */public class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode node = new ListNode(0); if(l1 == null && l2 == null) return l1; back(node, l1, l2); return node; } public void back(ListNode result, ListNode l1, ListNode l2){ if(l1 != null) result.val += l1.val; else l1 = new ListNode(0); if(l2 != null) result.val += l2.val; else l2 = new ListNode(0); ListNode node = new ListNode(0); if(result.val >= 10){//說明會下一個節(jié)點值至少為1 result.val = result.val % 10; node.val = 1; result.next = node; } if( (l1.next != null || l2.next != null)){ result.next = node; back(result.next, l1.next, l2.next); } }}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 沙湾县| 苗栗市| 兰州市| 香河县| 安宁市| 前郭尔| 台前县| 吴旗县| 宁晋县| 呼伦贝尔市| 朝阳县| 如东县| 寿阳县| 澄江县| 资兴市| 星子县| 锡林郭勒盟| 灯塔市| 鹤庆县| 泰顺县| 个旧市| 昌乐县| 田阳县| 西乡县| 宁夏| 沁源县| 城口县| 北票市| 合江县| 余干县| 蓬溪县| 保靖县| 五指山市| 桃江县| 平度市| 通城县| 凯里市| 平定县| 克什克腾旗| 怀远县| 九江市|