aboutsummaryrefslogtreecommitdiff
path: root/impls/pingala.cpp
blob: 510aa503fc76f43dac4afd328bf1cb09b89b7754 (plain)
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
/* pingala.cpp
 * Created: 2024-09-15
 * Author: Aryadev Chavali
 */

#include <cstdio>
#include <string>
#include <vector>

void padding(size_t n, size_t depth)
{
  for (size_t i = 0; i < ((depth - n) / 2); ++i)
    printf("\t");
}

void generate_triangle(const size_t depth)
{
  std::vector<size_t> items;
  items.reserve(depth * depth);
#define AT(i, j) items[((i) * depth) + (j)]
  AT(0, 0) = 1;
  padding(0, depth);
  printf("%lu\n", items[0]);
  for (size_t i = 1; i < depth; ++i)
  {
    AT(i, 0) = 1;
    padding(i, depth);
    printf("%lu,\t", AT(i, 0));
    for (size_t j = 1; j < i; ++j)
    {
      // Recurrence relation
      AT(i, j) = AT(i - 1, j - 1) + AT(i - 1, j);
      printf("%lu,\t", AT(i, j));
    }
    AT(i, i) = 1;
    printf("%lu\n", AT(i, i));
  }
#undef AT
}

void usage(FILE *fp)
{
  fprintf(fp, "Usage: pingala.out [depth]\n"
              "\tdepth: Depth of triangle generated\n");
}

int main(int argc, char *argv[])
{
  if (argc < 2)
  {
    usage(stderr);
    return 1;
  }
  int arg = std::stoi(argv[1]);
  if (arg <= 0)
  {
    usage(stderr);
    return 1;
  }

  generate_triangle(arg);
  return 0;
}