/**
* 给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。
* <p>
* 请你将两个数相加,并以相同形式返回一个表示和的链表。
* <p>
* 你可以假设除了数字 0 之外,这两个数都不会以 0 开头
* <p>
* 来源:力扣(LeetCode)
* 链接:https://leetcode-cn.com/problems/add-two-numbers
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode pre = new ListNode(0); // 当前指针 ListNode cur = pre; // 进位标记 int carry = 0; while (l1 != null || l2 != null) { int x = l1 == null ? 0 : l1.val; int y = l2 == null ? 0 : l2.val; // 同位置的元素求和 int sum = x + y + carry; // 是否有进位 0不进位 1进位 carry = sum > 9 ? 1 : 0; // 进位后的值 sum = sum % 10; cur.next = new ListNode(sum); // 指针移动 cur = cur.next; if (l1 != null) { l1 = l1.next; } if (l2 != null) { l2 = l2.next; } } if (carry == 1) { cur.next = new ListNode(carry); } return pre.next; }
LeetCode 206 翻转链表
public ListNode reverseList(ListNode head) { //递归 先递后归 if (head == null || head.next == null) { return head; } ListNode p = reverseList(head.next); head.next.next = head; head.next = null; return p; } /** * 翻转链表 206 * @param head * @return */ public ListNode reverseList1(ListNode head) { ListNode curr=head; ListNode prer=null; while(curr!=null){ ListNode next= curr.next; curr.next=prer; prer=curr; curr=next; } return prer; }