• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

xxxqqq

  • 博客园
  • 联系
  • 订阅
  • 管理

View Post

Convert Binary Search Tree to Doubly Linked List

Convert a binary search tree to doubly linked list with in-order traversal.

Example

Given a binary search tree:

    4
   / \
  2   5
 / \
1   3

return 1<->2<->3<->4<->5

中序遍历 穿针引线

/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 * Definition for Doubly-ListNode.
 * public class DoublyListNode {
 *     int val;
 *     DoublyListNode next, prev;
 *     DoublyListNode(int val) {
 *         this.val = val;
 *         this.next = this.prev = null;
 *     }
 * }
 */
public class Solution {
    /**
     * @param root: The root of tree
     * @return: the head of doubly list node
     */
    public List<DoublyListNode> helper(List<DoublyListNode> hT, TreeNode root) {
        if (root.left != null) {
            helper(hT, root.left);
        }
        DoublyListNode newNode  =  new DoublyListNode(root.val);
        newNode.prev = hT.get(1);
        hT.get(1).next = newNode;
        hT.remove(1);
        hT.add(newNode);
        if (root.right != null) {
            helper(hT, root.right);
        }
        return hT;
    }
    public DoublyListNode bstToDoublyList(TreeNode root) {
        // Write your code here
        if (root == null) {
            return null;
        }
        DoublyListNode head = new DoublyListNode(-1);
        DoublyListNode tail = head;
        List<DoublyListNode> hT = new ArrayList<DoublyListNode>();
        hT.add(head);
        hT.add(tail);
        helper(hT, root);
        hT.get(0).next.prev = null;
        return hT.get(0).next;
    }
}

 

posted on 2017-05-10 14:35  xxxqqq  阅读(190)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3