摘要: 1 #include 2 3 template 4 struct rb_node 5 { 6 T key; 7 bool color;//true red | false black 8 std::shared_ptr lchild, rchild, parent; 9 10 rb_node(T key, boo... 阅读全文
posted @ 2016-07-10 19:17 txlstars 阅读(317) 评论(0) 推荐(0) 编辑