查找-红黑树

源码:https://github.com/sunrui849/selectAlgorithm

目录:顺序查找

二分查找

插值查找

斐波那契查找

分块查找

哈希查找

二叉树查找

红黑树查找

红黑树查找

个人理解,如发现问题欢迎指出,共同学习~

性质

红黑树是基于二叉搜索树的(二叉搜索树看过来),与二叉搜索树不同的是多出来五条性质:

1.每个节点或是红色的,或是黑色的;

2.根节点是黑色的;

3.每个叶节点(NIL)是黑色的;

4.如果一个节点是红色的,则他的两个子节点都是黑色的;

5.对每个节点,从该节点到其所有后代节点的简单路径上,均包含相同数目的黑色节点。

在增删节点是,为了维护红黑树的性质,必须修改某些节点的颜色以及适当的修改结构,接下来介绍一下旋转

数据结构

/**
 * 红黑树
 */
public class RedBlackTree {
    private RedBlackTree parentNode;
    private RedBlackTree leftNode;
    private RedBlackTree rightNode;
    private Color color;
    private Integer value;
}

旋转

左旋:左旋x节点,y是x的右节点,将x的右指针指向y的左节点,y的左节点的父指针指向x;y的父指针指向x的父节点,x的父节点指向y;y的左指针指向x,x的右指针指向y

右旋:右旋x节点,y是x的左节点,将x的左指针指向y的右节点,用的右节点的父指针指向x;y的父指针指向x的父节点,x的父节点指向y;y的右指针指向x,x的左指针指向y

/**
     * 右旋
     * @param tree_x
     */
    private void rightRotate(RedBlackTree tree_x){
        if (tree_x == null || tree_x.leftNode == null){
            return;
        }
        RedBlackTree tree_y = tree_x.getLeftNode();

        //增加x和y的右节点的关联
        tree_x.leftNode = tree_y.rightNode;
        if (tree_y.rightNode != null){
            tree_y.rightNode.parentNode = tree_x;
        }

        //修改x\y 和 父节点的关系
        tree_y.parentNode = tree_x.parentNode;
        if (tree_x.parentNode == null){
            int value = tree_y.value;
            this.value = tree_y.value;
            tree_x.value = value;
        }else if(tree_x.parentNode.leftNode == tree_x){
            tree_x.parentNode.leftNode = tree_y;
        }else {
            tree_x.parentNode.rightNode = tree_y;
        }

        //修改x和y的关系
        tree_y.rightNode = tree_x;
        tree_x.parentNode = tree_y;
    }

    /**
     *左旋
     * @param tree_x
     */
    public void leftRotate(RedBlackTree tree_x){
        if (tree_x == null || tree_x.rightNode == null){
            return;
        }

        RedBlackTree tree_y = tree_x.rightNode;

        tree_x.rightNode = tree_y.leftNode;
        if (tree_y.leftNode != null){
            tree_y.leftNode.parentNode = tree_x;
        }

        tree_y.parentNode = tree_x.parentNode;
        if (tree_x.parentNode == null){
            int value = tree_y.value;
            this.value = tree_y.value;
            tree_x.value = value;
        } else if (tree_x.parentNode.leftNode == tree_x){
            tree_x.parentNode.leftNode = tree_y;
        } else {
            tree_x.parentNode.rightNode = tree_y;
        }

        tree_y.leftNode = tree_x;
        tree_x.parentNode = tree_y;
    }

查找

与二叉搜索树一致就不在赘述

增加

与二叉搜索树一致并在最后将插入的节点颜色设置为红色,并调用fixup来调整树的颜色和结构;

增加时主要有三种情况,当父节点是红色时且父节点是左孩子时:

z是插入的节点,y是叔叔节点

情况一:z的叔节点y是红色

父节点及叔叔节点改为黑色,爷爷节点改为红色,z赋值为爷爷节点在进行遍历

情况二:z的叔节点y是黑色的且z是一个右孩子

左旋父节点转为情况三

情况三:z的叔节点y是黑色的且z是一个左孩子

父节点改为黑色,爷爷节点改为红色,右旋后结束

代码如下

  public boolean insertNode(int value){
        if (this.value == null){
            this.value = value;
            return true;
        }
        RedBlackTree tree = this;
        RedBlackTree insertNode;
        while (true){
            if (tree.value > value){
                if (tree.leftNode == null){
                    insertNode = new RedBlackTree(tree,null,null,Color.RED,value);
                    tree.leftNode = insertNode;
                    break;
                }
                tree = tree.leftNode;
            }else if (tree.value < value){
                if (tree.rightNode == null){
                    insertNode = new RedBlackTree(tree,null,null,Color.RED,value);
                    tree.rightNode = insertNode;
                    break;
                }
                tree = tree.rightNode;
            }else {
                insertNode = new RedBlackTree(tree,null,tree.rightNode,Color.RED,value);
                tree.rightNode = insertNode;
                break;
            }
        }
        insertFixUp(insertNode);

        return true;
    }

    /**
     * 新增节点修复
     * @param insertNode
     */
    private void insertFixUp(RedBlackTree insertNode) {

        while (insertNode.parentNode != null && insertNode.parentNode.color==Color.RED){
            if (insertNode.parentNode == insertNode.parentNode.parentNode.leftNode){
                RedBlackTree uncleNode = insertNode.parentNode.parentNode.rightNode;
                if (uncleNode == null){
                    insertNode.parentNode.color = Color.BLACK;
                    insertNode.parentNode.parentNode.color = Color.RED;
                    insertNode = insertNode.parentNode.parentNode;
                    continue;
                }
                if (uncleNode.color == Color.RED) {//情况1,叔叔节点是红色
                    insertNode.parentNode.color = Color.BLACK;
                    uncleNode.color = Color.BLACK;
                    insertNode.parentNode.parentNode.color = Color.RED;
                    insertNode = insertNode.parentNode.parentNode;
                    continue;
                }else if (insertNode == insertNode.parentNode.rightNode){//情况2,是右节点   左旋父节点后,insertNode指向的还是子节点
                    insertNode = insertNode.parentNode;
                    leftRotate(insertNode);
                }
                //情况3,是左节点   右旋爷爷节点后,变为  红/黑\红,结束循环
                insertNode.parentNode.color = Color.BLACK;
                insertNode.parentNode.parentNode.color = Color.RED;
                rightRotate(insertNode.parentNode.parentNode);
            }else {
                RedBlackTree uncleNode = insertNode.parentNode.parentNode.leftNode;
                if (uncleNode == null){
                    insertNode.parentNode.color = Color.BLACK;
                    insertNode.parentNode.parentNode.color = Color.RED;
                    insertNode = insertNode.parentNode.parentNode;
                    continue;
                }
                if (uncleNode.color == Color.RED){
                    insertNode.parentNode.color = Color.BLACK;
                    uncleNode.color = Color.BLACK;
                    insertNode.parentNode.parentNode.color = Color.RED;
                    insertNode = insertNode.parentNode.parentNode;
                    continue;
                }else if (insertNode == insertNode.parentNode.leftNode){
                    insertNode = insertNode.parentNode;
                    rightRotate(insertNode);
                }
                insertNode.parentNode.color = Color.BLACK;
                insertNode.parentNode.parentNode.color = Color.RED;
                leftRotate(insertNode.parentNode.parentNode);
            }
        }
        color = Color.BLACK;
    }

删除

第一步还是删除,与二叉搜索树的删除基本思路一致(与我写的另一个二叉搜索树中的删除不一样,另一篇文章的二叉搜索树是自研的,效果不好),删除过程中记录删除了的颜色及可能会违反红黑性质的节点在进行修复

在修复节点时,x代表可能会违反红黑性质的节点,w代表兄弟节点,有如下四种情况:

情况一:x的兄弟节点w是红色的

将兄弟节点改为黑色,父节点改为红色,旋转后转为另三种情况中的一种

情况二:x的兄弟节点w是黑色的,且w的两个子节点都是黑色的

将兄弟节点改为红色,旋转后x赋值为父节点

情况三:x的兄弟节点w是黑色的,w的左孩子是红色的,w的右孩子是黑色的

兄弟节点的左节点改为黑色,兄弟节点改为红色,旋转后变成情况四

情况四:x的兄弟节点是黑色的,且w的右孩子是红色的

修改兄弟节点为父节点的颜色,父节点改为黑色,兄弟节点的右孩子改为黑色,旋转后结束


    public void delete(int value){
        RedBlackTree deleteNode = get(value);
        if (deleteNode != null){
            delete(deleteNode);
        }
    }

    private  void transplant(RedBlackTree u,RedBlackTree v){
        if (u.parentNode == null){
            this.value = v == null ? null : v.value;
            this.color = v == null ? null : v.color;
            this.leftNode = v == null ? null : v.leftNode;
            this.rightNode = v == null ? null : v.rightNode;
        }else if (u == u.parentNode.leftNode){
            u.parentNode.leftNode = v;
        }else {
            u.parentNode.rightNode = v;
        }
        if (v != null){
            v.parentNode = u.parentNode;
        }
    }

    private void delete(RedBlackTree deleteNode) {
        RedBlackTree rightMinNode = deleteNode;//y记录的应该是删除节点右树上最小的节点(算法导论中的y)
        RedBlackTree x;//记录着可能会违反红黑树性质的节点
        Color yOriginalColor = deleteNode.color;//标记删除的节点的颜色
        if (deleteNode.leftNode == null){
            x = deleteNode.rightNode;
            transplant(deleteNode,deleteNode.rightNode);
        }else if (deleteNode.rightNode == null){
            x = deleteNode.leftNode;
            transplant(deleteNode,deleteNode.leftNode);
        }else {
            //下面这段代码是拿到删除节点右树上最小节点赋值给rightMinNode
            RedBlackTree deleteRightNode = deleteNode.rightNode;
            while (deleteRightNode.leftNode != null){
                rightMinNode = deleteRightNode.leftNode;
                deleteRightNode = deleteNode.leftNode;
            }

            yOriginalColor = rightMinNode.color;//后续会将y的颜色变成删除节点的颜色,也就是缺少了一个y的颜色的节点
            x = rightMinNode.rightNode;//后面将右树最小节点的右节点移动到最小节点位置,可能会违反红黑树性质
            if (rightMinNode.parentNode != deleteNode){
                transplant(rightMinNode,rightMinNode.rightNode);//将最小节点的右节点替换到最小节点处,此时最小节点游离出来
                rightMinNode.rightNode = deleteNode.rightNode;//将删除节点的整个右树(此时已经不包含最小节点)移动到最小节点的右树
                rightMinNode.rightNode.parentNode = rightMinNode;//修改右树的父节点
            }
            transplant(deleteNode,rightMinNode);//将删除节点删除掉,其右树最小节点移动到删除节点位置
            rightMinNode.leftNode = deleteNode.leftNode;//并将删除节点的左树赋值成右树最小节点的左树
            rightMinNode.leftNode.parentNode = rightMinNode;//修改左树的父节点
            rightMinNode.color = deleteNode.color;//将最小节点的颜色变成删除节点的颜色,这时节点颜色只对右树有影响,其他节点原来的五条性质不变
        }

        if (yOriginalColor == Color.BLACK){//删除节点的颜色是黑色,违反了性质
            deleteFixup(x);
        }
    }

    private void deleteFixup(RedBlackTree fixNode) {
        boolean isContinue = true;
        while (isContinue && fixNode.parentNode != null && fixNode.color == Color.BLACK){
            if (fixNode == fixNode.parentNode.leftNode){
                RedBlackTree brotherNode = fixNode.parentNode.rightNode;
                if (brotherNode == null){
                    fixNode = fixNode.parentNode;
                    continue;
                }
                if (brotherNode.color == Color.RED){//情况一,兄弟节点是红色则父节点一定是黑色,转为另三种情况中的一种,即兄弟节点是黑色
                    fixNode.parentNode.color = Color.RED;
                    brotherNode.color = Color.BLACK;
                    leftRotate(fixNode.parentNode);
                } else if ((brotherNode.leftNode == null ||brotherNode.leftNode.color == Color.BLACK)
                            && (brotherNode.rightNode == null || brotherNode.rightNode.color == Color.BLACK)){
                    //情况二,兄弟节点的子节点都是黑色,那么将兄弟节点改成红色(路径-1),相当于左右都减一了,那么只需在上面的节点做处理即可
                    fixNode = fixNode.parentNode;
                    brotherNode.color = Color.RED;
                } else if (brotherNode.leftNode != null && brotherNode.leftNode.color == Color.RED){
                    //情况三,兄弟节点的左节点是红色,右节点是黑色,转为情况四
                    brotherNode.leftNode.color = Color.BLACK;
                    brotherNode.color = Color.RED;
                    rightRotate(brotherNode);
                }else{
                    //情况四,兄弟节点的右节点是红色,左旋父节点,修改兄弟节点为父节点的颜色,
                    //父节点为黑色,兄弟节点的右节点为黑色,左旋后,父节点的左树+1,结束
                    brotherNode.color = fixNode.parentNode.color;
                    fixNode.parentNode.color = Color.BLACK;
                    if (brotherNode.rightNode != null){
                        brotherNode.rightNode.color = Color.BLACK;
                    }
                    leftRotate(fixNode.parentNode);
                    isContinue = false;
                }
            }else {
                RedBlackTree brotherNode = fixNode.parentNode.leftNode;
                if (brotherNode == null){
                    fixNode = fixNode.parentNode;
                    continue;
                }
                if (brotherNode.color == Color.RED){
                    fixNode.parentNode.color = Color.RED;
                    brotherNode.color = Color.BLACK;
                    rightRotate(fixNode.parentNode);
                } else if ((brotherNode.leftNode == null ||brotherNode.leftNode.color == Color.BLACK)
                        && (brotherNode.rightNode == null || brotherNode.rightNode.color == Color.BLACK)){
                    fixNode = fixNode.parentNode;
                    brotherNode.color = Color.RED;
                } else if (brotherNode.rightNode != null && brotherNode.rightNode.color == Color.RED){
                    brotherNode.rightNode.color = Color.BLACK;
                    brotherNode.color = Color.RED;
                    leftRotate(brotherNode);
                }else{
                    brotherNode.color = fixNode.parentNode.color;
                    fixNode.parentNode.color = Color.BLACK;
                    if (brotherNode.leftNode != null){
                        brotherNode.leftNode.color = Color.BLACK;
                    }
                    rightRotate(fixNode.parentNode);
                    isContinue = false;
                }
            }
        }
        fixNode.color = Color.BLACK;
    }

    /**
     * 查找第一个出现该值的节点
     * @param value
     * @return
     */
    public RedBlackTree get(int value){
        RedBlackTree tree = this;

        if (this.value == null){
            return null;
        }

        while (tree != null){
            if (tree.value == value){
                return tree;
            } else if (tree.value > value){
                tree = tree.leftNode;
            } else{
                tree = tree.rightNode;
            }
        }
        return null;
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值