線索二叉樹的生成及遍歷

package tree; /* * 線索二叉樹 */ public class ThreadBinaryTree<E> { private E[] elements = null; private int count = 0; private Node pre;//中序遍歷最後一個結點或中序遍歷前一個結點變量 private Node lastLeft;//中序遍歷第一個結點
相關文章
相關標籤/搜索