University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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);