二叉搜索树与双向链表
Posted yingpu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉搜索树与双向链表相关的知识,希望对你有一定的参考价值。
题目:输入一棵二叉树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的节点,只能调整树中节点指针的指向。
public Node Convert(Node node){ Stack<Node> stack = new Stack<Node>(); if(node == null) return null; Node old = null; Node head = null; while(true){ while(node!=null){ stack.push(node); node = node.left; } if(stack.isEmpty()) break; node = stack.pop(); if(head == null){ head = node; } if(old!=null){ old.right = node; node.left = old; } old = node; node = node.right; } return head; }
以上是关于二叉搜索树与双向链表的主要内容,如果未能解决你的问题,请参考以下文章