하나의 수조의 값을 두 갈래 트리에 저장한 다음 세 가지 방식으로 훑어보기(전체 코드)

6303 단어
기능: 한 개의 수조의 값을 두 갈래 나무에 저장한 후 3가지 방식으로 훑어본다
package unit5__BiTree;  

import java.util.LinkedList;
import java.util.List;

public class ListTreeTest { 
    private int[] array = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
    private static List nodeList = null;
    private static class Node {
        Node leftChild;
        Node rightChild;
        int data;
        Node(int newData){
            leftChild = null;
            rightChild = null;
            data = newData;
        }
    }
    public void createBinTree(){
        nodeList = new LinkedList();
        for(int nodeIndex = 0; nodeIndex < array.length; nodeIndex++){
            nodeList.add(new Node(array[nodeIndex]));
        }
        for (int parentIndex = 0; parentIndex < array.length / 2 - 1; parentIndex++) {
            nodeList.get(parentIndex).leftChild = nodeList.get(parentIndex*2+1);
            nodeList.get(parentIndex).rightChild = nodeList.get(parentIndex*2+2);
        }
        int lastParentIndex = array.length / 2-1;
        nodeList.get(lastParentIndex).leftChild = nodeList.get(lastParentIndex*2+1);
        if (array.length % 2 == 1) {
            nodeList.get(lastParentIndex).rightChild = nodeList.get(lastParentIndex*2+2);
        }
    }
    // 
    public static void preOrderTraverse(Node node) {
        if (node == null) {
            return;
        }
        System.out.print(node.data+" ");
        preOrderTraverse(node.leftChild);
        preOrderTraverse(node.rightChild);
    }
    //  
    public static void inOrderTraverse(Node node) {  
        if (node == null)  
            return;  
        inOrderTraverse(node.leftChild);  
        System.out.print(node.data + " ");  
        inOrderTraverse(node.rightChild);  
    }  
    //   
    public static void postOrderTraverse(Node node) {  
        if (node == null)  
            return;  
        postOrderTraverse(node.leftChild);  
        postOrderTraverse(node.rightChild);  
        System.out.print(node.data + " ");  
    }  
    public static void main(String[] args) {
        ListTreeTest binTree = new ListTreeTest();  
        binTree.createBinTree();  
        // nodeList 0   
        Node root = nodeList.get(0);  

        System.out.println(" :");  
        preOrderTraverse(root);  
        System.out.println();  

        System.out.println(" :");  
        inOrderTraverse(root);  
        System.out.println();  

        System.out.println(" :");  
        postOrderTraverse(root);  
    }
}  

차례차례 두 갈래 나무를 두루 다니다.

좋은 웹페이지 즐겨찾기