MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / node

Class node

code/other/algorithm_x.cpp:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1bool handle_solution(vi rows) { return false; }
2struct exact_cover {
3 struct node {
4 node *l, *r, *u, *d, *p;
5 int row, col, size;
6 node(int _row, int _col) : row(_row), col(_col) {
7 size = 0; l = r = u = d = p = NULL; } };
8 int rows, cols, *sol;
9 bool **arr;
10 node *head;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected