伸展树基本操作实战

一 问题描述

实现对伸展树的基本操作

二 输入和输出

1 输入

有 5 种基本操作,格式如下

0:退出程序

1 val:将 val 插入伸展树中

2:查找该伸展树的最大值

3:查找该伸展树的最小值

4 val:将 val 从伸展树中删掉

2 输出

针对操作1和操作4,进行中序遍历打印,针对操作2,打印最大值,针对操作3,打印最小值。

三 输入和输出样例

1 输入样例

1 5

1 6

1 2

1 3

2

3

1 7

1 8

4 6

0

2 输出样例

5

5 6

2 5 6

2 3 5 6

6

2

2 3 5 6 7

2 3 5 6 7 8

2 3 5 7 8

四 代码

package com.platform.modules.alg.alglib.p392;

public class P392 {
    public String output = "";
    private int maxn = 100005;
    int n, cnt, root; // 操作类型,结点存储下标累计,树根
    private node tr[] = new node[maxn];

    public P392() {
        for (int i = 0; i < tr.length; i++) {
            tr[i] = new node();
        }
    }

    void init() {
        cnt = root = 0;
        tr[0].son[0] = tr[0].son[1] = 0;
    }

    // 中序遍历测试
    void print(int rt) {
        if (rt == 0) return;
        if (tr[rt].son[0] != 0)
            print(tr[rt].son[0]);
        output += tr[rt].val + " ";
        if (tr[rt].son[1] != 0)
            print(tr[rt].son[1]);
    }

    // 生成新结点
    int New(int father, int val) {
        tr[++cnt].fa = father;
        tr[cnt].val = val;
        tr[cnt].son[0] = tr[cnt].son[1] = 0;
        return cnt;
    }

    // 旋转
    void Rotate(int x) {
        int y = tr[x].fa, z = tr[y].fa;
        int c = (tr[y].son[0] == x) ? 1 : 0;
        tr[y].son[1 - c] = tr[x].son[c];
        tr[tr[x].son[c]].fa = y;
        tr[x].fa = z;
        if (z > 0)
            tr[z].son[tr[z].son[1] == y ? 1 : 0] = x;
        tr[x].son[c] = y;
        tr[y].fa = x;
    }

    // 双层伸展,将 x 旋转为 goal 的儿子
    void Splay(int x, int goal) {
        while (tr[x].fa != goal) {
            int y = tr[x].fa, z = tr[y].fa;
            if (z != goal) {
                if (((tr[z].son[0] == y ? 1 : 0) ^ (tr[y].son[0] == x ? 1 : 0)) == 0) {
                    Rotate(y);
                } else {
                    Rotate(x);
                }
            }
            Rotate(x);
        }
        // 如果 goal 是 0,则更新根为 x
        if (goal == 0) root = x;
    }

    void Insert(int val) {//插入值val
        int x;
        for (x = root; tr[x].son[(tr[x].val < val) ? 1 : 0] > 0; x = tr[x].son[(tr[x].val < val) ? 1 : 0]) ; // 找位置
        tr[x].son[(tr[x].val < val) ? 1 : 0] = New(x, val);
        Splay(tr[x].son[(tr[x].val < val) ? 1 : 0], 0); // 新插入结点旋转到根
    }

    // 查找值 val
    boolean Find(int val) {
        int x = root;
        while (x > 0) {
            if (tr[x].val == val) {
                Splay(x, 0); // x旋转到根
                return true;
            }
            if (tr[x].son[(tr[x].val < val) ? 1 : 0] > 0)
                x = tr[x].son[(tr[x].val < val) ? 1 : 0];
            else { // 查找失败
                Splay(x, 0); // x 旋转到根
                return false;
            }
        }
        return false;
    }

    // 找最大值结点
    void Findmax() {
        int x = root;
        if (x > 0) {
            while (tr[x].son[1] > 0)
                x = tr[x].son[1];
            Splay(x, 0); // x 旋转到根
        }
    }

    // 找最小值结点
    void Findmin() {
        int x = root;
        if (x > 0) {
            while (tr[x].son[0] > 0)
                x = tr[x].son[0];
            Splay(x, 0); // x 旋转到根
        }
    }

    boolean Split(int val, SubTreeRoot subTreeRoot) {
        if (Find(val)) { // 查找成功
            subTreeRoot.t1 = tr[root].son[0];
            subTreeRoot.t2 = tr[root].son[1];
            root = subTreeRoot.t1;
            tr[subTreeRoot.t1].fa = tr[subTreeRoot.t2].fa = 0;
            return true;
        }
        return false;
    }

    void Join(int t1, int t2) {
        if (t1 > 0) {
            Findmax(); // 查找 t1 的最大值
            tr[root].son[1] = t2;
            tr[t2].fa = root;
        } else
            root = t2;
    }

    void Delete(int val) { // 删除值 val
        SubTreeRoot subTreeRoot = new SubTreeRoot();
        subTreeRoot.t1 = 0;
        subTreeRoot.t2 = 0;
        if (Split(val, subTreeRoot))
            Join(subTreeRoot.t1, subTreeRoot.t2);
    }

    public String cal(String input) {
        String[] line = input.split("\n");
        init();
        int count = 0;
        while (true) {
            String[] opt = line[count++].split(" ");
            n = Integer.parseInt(opt[0]);
            switch (n) {
                case 0:
                    return output;
                case 1:
                    Insert(Integer.parseInt(opt[1]));
                    print(root);
                    output += "\n";
                    break;
                case 2:
                    Findmax();
                    output += tr[root].val + "\n";
                    break;
                case 3:
                    Findmin();
                    output += tr[root].val + "\n";
                    break;
                case 4:
                    Delete(Integer.parseInt(opt[1]));
                    print(root);
                    output += "\n";
                    break;
            }
        }
    }
}

class node {
    int son[] = new int[2]; // 左右孩子 0,1
    int val, fa; // 值,父亲
}

class SubTreeRoot {
    int t1;
    int t2;
}

五 测试

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值