美文网首页
竞赛题-6235. 逐层排序二叉树所需的最少操作数目

竞赛题-6235. 逐层排序二叉树所需的最少操作数目

作者: 程序员小2 | 来源:发表于2022-11-13 11:21 被阅读0次

题目:

给你一个 值互不相同 的二叉树的根节点 root

在一步操作中,你可以选择 同一层 上任意两个节点,交换这两个节点的值。

返回每一层按 严格递增顺序 排序所需的最少操作数目。

节点的 层数 是该节点和根节点之间的路径的边数。

示例 1 :

image.png
输入:root = [1,4,3,7,6,8,5,null,null,null,null,9,null,10]
输出:3
解释:
  • 交换 4 和 3 。第 2 层变为 [3,4] 。
  • 交换 7 和 5 。第 3 层变为 [5,6,8,7] 。
  • 交换 8 和 7 。第 3 层变为 [5,6,7,8] 。
    共计用了 3 步操作,所以返回 3 。
    可以证明 3 是需要的最少操作数目。

示例 2 :

image.png

输入:root = [1,3,2,7,6,5,4]
输出:3
解释:

  • 交换 3 和 2 。第 2 层变为 [2,3] 。
  • 交换 7 和 4 。第 3 层变为 [4,6,5,7] 。
  • 交换 6 和 5 。第 3 层变为 [4,5,6,7] 。
    共计用了 3 步操作,所以返回 3 。
    可以证明 3 是需要的最少操作数目。
    示例 3 :
image.png

输入:root = [1,2,3,4,5,6]
输出:0
解释:每一层已经按递增顺序排序,所以返回 0 。

提示:

  • 树中节点的数目在范围 [1, 10^5]
  • 1 <= Node.val <= 10^5
  • 树中的所有值 互不相同

思路:

先进行树的层次遍历,再看每一层需要交换的次数。 交换次数的计算可以用一个排好序的数组ordered和一个map. map记录原始树层次上的数的位置。

java代码:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public int minimumOperations(TreeNode root) {
        if (root == null) {
            return 0;
        }

        int res = 0;
        Queue<TreeNode> queue = new LinkedList<TreeNode>();
        queue.offer(root);
        while (!queue.isEmpty()) {
            int size = queue.size();
            int[] temp = new int[size];
            for (int i = 0; i < size; i++) {
                TreeNode node = queue.poll();
                temp[i] = node.val;

                if (node.left != null) {
                    queue.offer(node.left);
                }
                if (node.right != null) {
                    queue.offer(node.right);
                }
            }
            res += exchangeTime(temp);
        }

        return res;

    }

    private int exchangeTime(int[] temp) {
        int size = temp.length;
        if (size <= 1) {
            return 0;
        }

        int[] ordered = new int[size];
        System.arraycopy(temp, 0, ordered, 0, size);
        Arrays.sort(ordered);

        Map<Integer, Integer> map = new HashMap<Integer, Integer>(size);
        for (int i = 0; i < size; i++) {
            map.put(temp[i], i);
        }

        int res = 0;
        for (int i = 0; i < size; i++) {
            if (ordered[i] != temp[i]) {
                res++;
                exchange(temp, map, map.get(ordered[i]), i);
            }
        }
        return res;
    }

    private void exchange(int[] temp, Map<Integer, Integer> map, Integer j, int i) {
        int t = temp[j];
        temp[j] = temp[i];
        temp[i] = t;
        map.put(temp[j], j);
        map.put(temp[i], i);
    }
}

相关文章

  • 竞赛题-6235. 逐层排序二叉树所需的最少操作数目

    题目: 给你一个 值互不相同 的二叉树的根节点 root 。 在一步操作中,你可以选择 同一层 上任意两个节点,交...

  • 几种主流排序算法

    排序算法 冒泡排序 选择排序 插入排序 快速排序 堆排序 完全二叉树: 除了最后一层之外的其他每一层都被完全填充,...

  • 算法

    1.算法 链表 二叉树 排序 查找 递归、迭代 位操作 概率 排列组合 1.1 链表 1.1 二叉树 1.3 排序...

  • Leetcode 102 二叉树的层序遍历

    二叉树的层序遍历 题目 给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)...

  • 102.二叉树的层序遍历

    二叉树的层序遍历 题目 给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)...

  • LeetCode 102. 二叉树的层序遍历 Binary Tr

    102. 二叉树的层序遍历 给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节...

  • 二叉树遍历问题

    102. 二叉树的层序遍历 · 逐层遍历 · 递归法 注意顺序先左后右 · BFS · DFS

  • JavaScript 使用 堆排序

    堆 排序 JavaScript 使用 堆 进行对数组的排序 基本的概念 必须是完全二叉树 ((n - 1) 层必须...

  • swift: 层序遍历翻转二叉树和快速排序

    Talking is cheap, show the codes. 层序遍历进行翻转二叉树 快速排序

  • 102. 二叉树的层序遍历

    给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)。 示例:二叉树:[3,...

网友评论

      本文标题:竞赛题-6235. 逐层排序二叉树所需的最少操作数目

      本文链接:https://www.haomeiwen.com/subject/pimhxdtx.html