369.Plus-One-Linked-List
369. Plus One Linked List
题目地址
https://leetcode.com/problems/plus-one-linked-list/
题目描述
Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer.
You may assume the integer do not contain any leading zero, except the number 0 itself.
The digits are stored such that the most significant digit is at the head of the list.
Example :
Input: [1,2,3]
Output: [1,2,4]代码
Approach #1 Sentinel Head
Time: O(N) && Space: O(1)
Approach #2 Recursive DFS
Last updated
Was this helpful?