LeetCode 987. 二叉树的垂序遍历

给你二叉树的根结点 root ,请你设计算法计算二叉树的 垂序遍历 序列。

对位于 (row, col) 的每个结点而言,其左右子结点分别位于 (row + 1, col - 1) 和 (row + 1, col + 1) 。树的根结点位于 (0, 0) 。

二叉树的 垂序遍历 从最左边的列开始直到最右边的列结束,按列索引每一列上的所有结点,形成一个按出现位置从上到下排序的有序列表。如果同行同列上有多个结点,则按结点的值从小到大进行排序。

返回二叉树的 垂序遍历 序列。

示例 1:

输入:root = [3,9,20,null,null,15,7]
输出:[[9],[3,15],[20],[7]]
解释:
列 -1 :只有结点 9 在此列中。
列  0 :只有结点 315 在此列中,按从上到下顺序。
列  1 :只有结点 20 在此列中。
列  2 :只有结点 7 在此列中。
示例 2:


输入:root = [1,2,3,4,5,6,7]
输出:[[4],[2],[1,5,6],[3],[7]]
解释:
列 -2 :只有结点 4 在此列中。
列 -1 :只有结点 2 在此列中。
列  0 :结点 156 都在此列中。
          1 在上面,所以它出现在前面。
          56 位置都是 (2, 0) ,所以按值从小到大排序,56 的前面。
列  1 :只有结点 3 在此列中。
列  2 :只有结点 7 在此列中。
示例 3:


输入:root = [1,2,3,4,6,5,7]
输出:[[4],[2],[1,5,6],[3],[7]]
解释:
这个示例实际上与示例 2 完全相同,只是结点 56 在树中的位置发生了交换。
因为 56 的位置仍然相同,所以答案保持不变,仍然按值从小到大排序。
 

提示:

树中结点数目总数在范围 [1, 1000]0 <= Node.val <= 1000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/vertical-order-traversal-of-a-binary-tree
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

总体思路:
1、封装静态内部类保存需要使用的对应信息;
2、使用TreeMap进行第一次按列号排序和聚合;
3、前序遍历二叉树,将节点封装为我们的静态内部类并放入TreeMap;
4、遍历二叉树,对其按照行号和结点值排序;
5、输出封装类的节点值,完成题目!

public class num987 {
    public List<List<Integer>> verticalTraversal(TreeNode root) {
        //TreeMap<列号,同一个列号的所有TreeNodeAndIndex节点>
        TreeMap<Integer,List<TreeNodeAndIndex>> treeMap=new TreeMap<>();
        //从根结点对二叉树进行遍历,并对应数据写入到TreeMap中
        TreeNodeAndIndex rootAndIndex=new TreeNodeAndIndex(root,0,0);
        dfs(treeMap,rootAndIndex);
        //遍历TreeMap,时期对于List<TreeNodeAndIndex>按行号进行排序,行号相同时按节点值排序
        //!!!forEach((key,value)这里得到的key和value均为形参,所以一定要记得对其进行替换
        treeMap.forEach((key,value)-> {
            List<TreeNodeAndIndex> sortedList = value.stream()
                    .sorted(Comparator.comparing(TreeNodeAndIndex::getRow)
                            .thenComparingInt(TreeNodeAndIndex::getNodeVal))
                    .collect(Collectors.toList());
            treeMap.put(key,sortedList);
        });
        //输出结果值
        return treeMap.entrySet().stream()
                .map(entry->entry.getValue().stream()
                        .map(list->list.getNode().val)
                        .collect(Collectors.toList()))
                .collect(Collectors.toList());
    }
	//前序遍历,封装结点
    public void dfs(TreeMap<Integer,List<TreeNodeAndIndex>> treeMap,TreeNodeAndIndex rootAndIndex){
        if(rootAndIndex.node==null) return;
        int col= rootAndIndex.col;
        List<TreeNodeAndIndex> tmp=treeMap.getOrDefault(col,new ArrayList<TreeNodeAndIndex>());
        tmp.add(rootAndIndex);
        treeMap.put(col,tmp);
        TreeNodeAndIndex left=new TreeNodeAndIndex(rootAndIndex.node.left, rootAndIndex.row+1, rootAndIndex.col-1 );
        TreeNodeAndIndex right=new TreeNodeAndIndex(rootAndIndex.node.right, rootAndIndex.row+1, rootAndIndex.col+1 );
        dfs(treeMap,left);
        dfs(treeMap,right);
    }
    //封装对应的二叉树节点,行号,列号
    public static class TreeNodeAndIndex{
        TreeNode node;
        int row;
        int col;

        public TreeNode getNode() {
            return node;
        }

        TreeNodeAndIndex(TreeNode root, int row, int col){
            node=root;
            this.row=row;
            this.col=col;
        }

        public int getRow() {
            return row;
        }

        public int getCol() {
            return col;
        }
        public int getNodeVal(){
            return node.val;
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值