美文网首页剑指 Offer Java版
剑指Offer Java版 面试题36:二叉搜索树与双向链表

剑指Offer Java版 面试题36:二叉搜索树与双向链表

作者: 孙强Jimmy | 来源:发表于2019-07-22 23:13 被阅读1次

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

    练习地址

    https://www.nowcoder.com/practice/947f6eb80d944a84850b0538bf0ec3a5

    参考答案

    /**
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
        }
    }
    */
    public class Solution {
        private TreeNode mLast;
        
        public TreeNode Convert(TreeNode pRootOfTree) {
            if (pRootOfTree == null) {
                return null;
            }
            convertNode(pRootOfTree);
            // 我们需要返回头节点
            while (mLast.left != null) {
                mLast = mLast.left;
            }
            return mLast;
        }
        
        private void convertNode(TreeNode node) {
            if (node.left != null) {
                convertNode(node.left);
            }
            node.left = mLast;
            if (mLast != null) {
                mLast.right = node;
            }
            mLast = node;
            if (node.right != null) {
                convertNode(node.right);
            }
        }
    }
    

    复杂度分析

    • 时间复杂度:O(n)。
    • 空间复杂度:O(logn)。

    👉剑指Offer Java版目录
    👉剑指Offer Java版专题

    相关文章

      网友评论

        本文标题:剑指Offer Java版 面试题36:二叉搜索树与双向链表

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