데이터 구조 - 이 진 트 리 구현

671 단어
나무 노드 성명
class TreeNode {
       int value;
       TreeNode left_Node;
       TreeNode right_Node;
       // TreeNode    
       public TreeNode(int value) {
          this.value=value;
          this.left_Node=null;
          this.right_Node=null;
       }
} 

이 진 트 리 성명
class BinaryTree {
   public TreeNode rootNode; //       
   //    :                 
   public BinaryTree(int[] data) {
      for(int i=0;i

좋은 웹페이지 즐겨찾기