From 4b7e027f5ac3cf1f62f986573708f3a85aa1d955 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Tue, 20 Dec 2022 23:12:30 +0100 Subject: day 20 part 1 --- 22.20/main.cpp | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 22.20/main.cpp (limited to '22.20/main.cpp') diff --git a/22.20/main.cpp b/22.20/main.cpp new file mode 100644 index 0000000..753cdf5 --- /dev/null +++ b/22.20/main.cpp @@ -0,0 +1,47 @@ +/* The reason I gave up on this: + * I thought I'd need to somehow track the first "node", so I wanted to + * experiment on a more naive implementation. I don't. + * Also, the dumb algorithm is still by far fast enough. So, Python it is. */ +#include +#include +using namespace std; + +struct CNode +{ + size_t id; + CNode *prev = NULL, *next = NULL; +}; + +struct Circular +{ + vector nodes; + Circular(size_t size) { + for (size_t i = 0; i < size; i++) { + nodes.push_back(CNode{i}); + } + + // pointers to stuff in a vector? how risque! + for (size_t i = 0; i < size - 1; i++) { + nodes[i].next = &nodes[i+1]; + nodes[i+1].prev = &nodes[i]; + } + CNode *f = &nodes.front(); + CNode *b = &nodes.back(); + f->prev = b; + b->next = f; + } + + void print() { + } +}; + +int +main() +{ + int n; + vector input; + while (scanf("%d ", &n) == 1) { + input.push_back(n); + } + Circular c(input.size()); +} -- cgit 1.4.1-2-gfad0