University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678
  1. typedef struct node {
  2. struct node *parent;
  3. struct node *left;
  4. struct node *right;
  5. int black;
  6. } node;
  7. void node_init(node *n, node *parent);