-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpt.c
44 lines (31 loc) · 849 Bytes
/
pt.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
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
int pascal (int row, int col) {
assert (row >= 0 && col >= 0);
if (row == 0 && col == 0) {
return 1;
} else {
// we're not the left edge, get the left value
int leftValue = 0;
int rightValue = 0;
if (col != 0) {
leftValue = pascal (row - 1, col - 1);
}
// we're not the right edge, get right value
// each row has the same number of columns
// i.e. row 0 has 1 column
if (col != row) {
rightValue = pascal (row - 1, col);
}
return leftValue + rightValue;
}
assert (0);
return -1;
}
int main (void) {
int row, col;
assert (scanf ("%d %d", &row, &col) == 2);
printf ("%d\n", pascal (row, col));
return EXIT_SUCCESS;
}