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.

12345678910
  1. #include "tree.h"
  2. #include <stdlib.h>
  3. void node_init(node *n, node *parent) {
  4. n->parent = parent;
  5. n->left = NULL;
  6. n->right = NULL;
  7. n->black = 0;
  8. }