數據結構與算法-二叉樹-簡單實現

1、概述node Node (結點類) BinaryTree (接口類) LinkBinaryTree (鏈表實現的二叉樹類) Test (測試類) 2、代碼ide Node:post public class Node { /** 內容 **/ private Object data; /** 左子樹 **/ private Node leftChild; /** 右子樹 **/
相關文章
相關標籤/搜索