-
Notifications
You must be signed in to change notification settings - Fork 816
/
Copy pathplus_one.c
55 lines (49 loc) · 1.26 KB
/
plus_one.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/**
** Return an array of size *returnSize.
** Note: The returned array must be malloced, assume caller calls free().
**/
static int* plusOne(int* digits, int digitsSize, int* returnSize)
{
int i, j, len = 0, carry = 1;
int *result = malloc((digitsSize + 1) * sizeof(int));
for (i = digitsSize - 1; i >= 0 || carry; i--) {
if(i >= 0){
int n = digits[i] + carry;
result[len++] = n % 10;
carry = n / 10;
} else {
// add case like [9]
result[len++] = 1;
carry = 0;
}
}
for (i = 0, j = len - 1; i < j; i++, j--) {
int tmp = result[i];
result[i] = result[j];
result[j] = tmp;
}
*returnSize = len;
return result;
}
int main(int argc, char **argv)
{
if (argc != 2) {
fprintf(stderr, "Usage: ./test num\n");
exit(-1);
}
int i, count = strlen(argv[1]);
int *digits = malloc(count * sizeof(int));
for (i = 0; i < count; i++) {
digits[i] = argv[1][i] - '0';
}
int len = 0;
int *res = plusOne(digits, count, &len);
for (i = 0; i < len; i++) {
printf("%c", res[i] + '0');
}
printf("\n");
return 0;
}