摘要: #include <stdio.h> #include <time.h> #include <stdlib.h> #define NIL (&__NIL) typedef struct Node { struct Node *lchild, *rchild; int color, val; } No 阅读全文
posted @ 2021-09-11 05:17 代码附体 阅读(105) 评论(0) 推荐(0) 编辑