• 36、二叉搜索树与双向链表//TODO思路还是没梳理清


    1、题目描述:输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。

    2、思路:

    3、代码:

    /**
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        public TreeNode Convert(TreeNode root) {
            if(root==null)
                return null;
            if(root.left==null&&root.right==null)
                return root;
            // 1.将左子树构造成双链表,并返回链表头节点
            TreeNode left = Convert(root.left);
            TreeNode p = left;
            // 2.定位至左子树双链表最后一个节点
            while(p!=null&&p.right!=null){
                p = p.right;
            }
            // 3.如果左子树链表不为空的话,将当前root追加到左子树链表
            if(left!=null){
                p.right = root;
                root.left = p;
            }
            // 4.将右子树构造成双链表,并返回链表头节点
            TreeNode right = Convert(root.right);
            // 5.如果右子树链表不为空的话,将该链表追加到root节点之后
            if(right!=null){
                right.left = root;
                root.right = right;
            }
            return left!=null?left:root;       
        }
    }
  • 相关阅读:
    洛谷 P1284 三角形牧场WD
    luogu P3817 小A的糖果
    P3374 【模板】树状数组 1
    线程与threading模块
    socketserver模块
    python 粘包问题及解决方法
    python 网络编程
    类的进阶四 反射和内置方法
    python hashlib模块 logging模块 subprocess模块
    类的进阶三
  • 原文地址:https://www.cnblogs.com/guoyu1/p/12155231.html
Copyright © 2020-2023  润新知