樹的定義

class TreeNode<AnyType>{ AnyType element; //參數 TreeNode firstChild; //第一個孩子節點 TreeNode nextSibling; //兄弟節點 public TreeNode(AnyType data){ //構造方法 element=data; firstChild=null; nextSibling=
相關文章
相關標籤/搜索