2019年6月23日

摘要: /** From CLR */ private void fixAfterInsertion(Entry x) { x.color = RED; while (x != null && x != root && x.parent.color == RED) {//当前插入节点的父节点是 当前节点祖先节点的 左子节点 进入 ... 阅读全文
posted @ 2019-06-23 11:15 soft_xiaohui 阅读(94) 评论(0) 推荐(0) 编辑

导航