-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathAddOneToNumber.cpp
69 lines (56 loc) · 1.81 KB
/
AddOneToNumber.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
Given a non-negative number represented as an array of digits,
add 1 to the number ( increment the number represented by the digits ).
The digits are stored such that the most significant digit is at the head of the list.
Example:
If the vector has [1, 2, 3]
the returned vector should be [1, 2, 4]
as 123 + 1 = 124.
NOTE: Certain things are intentionally left unclear in this question which you should practice asking the interviewer.
For example, for this problem, following are some good questions to ask :
Q : Can the input have 0’s before the most significant digit. Or in other words, is 0 1 2 3 a valid input?
A : For the purpose of this question, YES
Q : Can the output have 0’s before the most significant digit? Or in other words, is 0 1 2 4 a valid output?
A : For the purpose of this question, NO. Even if the input has zeroes before the most significant digit.
https://www.interviewbit.com/problems/add-one-to-number/
*/
vector<int> Solution::plusOne(vector<int> &A) {
vector<int> result;
if (A.empty())
return result;
int z = 0; int size = A.size();
while (z < size && A[z] == 0)
++z;
if (z == size)
return vector<int> {1};
int carry = 0;
for (int end = size-1; end>=z; --end)
{
if (end == size-1 && A[end] != 9)
{
++A[end];
break;
}
if (A[end] == 9)
{
A[end] = 0;
carry = 1;
}
else
{
++A[end];
carry = 0;
break;
}
}
if (carry)
{
result.emplace_back(carry);
vector<int> temp(A.cbegin() + z, A.cend());
for (auto& t : temp)
result.emplace_back(t);
}
else
result = vector<int>(A.cbegin() + z, A.cend());
return result;
}