problem:
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 digit is at the head of the list....
分类:
其他好文 时间:
2015-04-03 11:26:38
阅读次数:
160
Plus One
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 digit is at the head of the list.
解题思路:...
分类:
其他好文 时间:
2015-04-02 01:20:13
阅读次数:
152
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 digit is at the head of the list.
题意:大数加法。
class Soluti...
分类:
其他好文 时间:
2015-03-30 16:33:20
阅读次数:
91
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 digit is at the head of the list.
vector plusOne(vector &d...
分类:
其他好文 时间:
2015-03-20 10:58:09
阅读次数:
136
题目链接:Plus One
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 digit is at the head of the list.
这道题的要求是给定...
分类:
其他好文 时间:
2015-03-19 21:59:35
阅读次数:
117
/* int *plusOne(int *digits, int len, int *newLen) 感觉很坑,用c做的时候一直run error而且newLen这个参数有用?*/class Solution {public: vector plusOne(vector &digi...
分类:
其他好文 时间:
2015-03-14 13:51:23
阅读次数:
154
题目:
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 digit is at the head of the list.题目意思是说给定一个数这个数以数组的形式表示,就...
分类:
其他好文 时间:
2015-03-14 12:27:07
阅读次数:
128
https://leetcode.com/problems/plus-one/Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored suc...
分类:
其他好文 时间:
2015-03-10 21:17:35
阅读次数:
142
Plus One问题: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 ...
分类:
其他好文 时间:
2015-03-08 21:22:25
阅读次数:
123
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 digit is at...
分类:
其他好文 时间:
2015-03-07 16:58:09
阅读次数:
131