FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode-1/src/plusOne/plusOne.cpp at master · daction/leetcode-1 · GitHub
daction
/
leetcode-1
Public
forked from
haoel/leetcode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode-1
/
src
/
plusOne
/
plusOne.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (44 loc) · 1.14 KB
Breadcrumbs
leetcode-1
/
src
/
plusOne
/
plusOne.cpp
Copy path
File metadata and controls
51 lines (44 loc) · 1.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
Source : https://oj.leetcode.com/problems/plus-one/
//
Author : Hao Chen
//
Date : 2014-06-21
/*
*********************************************************************************
*
* 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.
*
*********************************************************************************
*/
#
include
<
iostream
>
#
include
<
vector
>
using
namespace
std
;
vector<
int
>
plusOne
(vector<
int
> &digits) {
int
carry=
1
;
vector <
int
> v;
while
(digits.
size
()>
0
){
int
x = digits.
back
();
digits.
pop_back
();
x = x + carry;
v.
insert
(v.
begin
(), x%
10
);
carry = x/
10
;
}
if
(carry>
0
){
v.
insert
(v.
begin
(), carry);
}
return
v;
}
void
printVector
(vector<
int
>& v)
{
cout <<
"
{
"
;
for
(
int
i=
0
; i<v.
size
(); i++){
cout << v[i] <<
"
"
;
}
cout <<
"
}
"
<< endl;
}
int
main
()
{
int
a[]={
9
,
9
,
9
};
vector<
int
>
d
(&a[
0
], &a[
0
]+
sizeof
(a)/
sizeof
(
int
));
vector<
int
> v =
plusOne
(d);
printVector
(v);
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL