小言_互联网的博客

【剑指Offer】36. 二叉搜索树与双向链表

394人阅读  评论(0)

NowCoder

题目描述

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

/**
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    // pre->cur,head为链表头。
    TreeNode head, pre;
    public TreeNode Convert(TreeNode root) {
        dfs(root);
        return head;        
    }
    private void dfs(TreeNode cur) {
        // 终止条件
        if(cur == null) return;
        
        // 左节点
        dfs(cur.left);
        // 根节点
        // 如果pre遍历到末端
        if(pre != null) pre.right = cur;
        else head = cur;
        cur.left = pre;
        pre = cur;
        // 右节点
        dfs(cur.right);
    }
}

转载:https://blog.csdn.net/weixin_43469680/article/details/108084797
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场