摘要: #include "iostream" using namespace std; class Node { public: int data; bool red; Node *parent = NULL; Node *lchild = NULL; Node *rchild = NULL; Node(int data, bool red = true) { this->da... 阅读全文
posted @ 2019-06-13 23:30 SHQHDMR 阅读(228) 评论(0) 推荐(0) 编辑