[원] 두 갈래 나무의 생성과 반복
package com.ccl.data.organization;
/**
* @author Administrator
* @since 2012/4/10
*/
class Node {
public Node leftChild;
public Node rightChild;
public int data;
public Node() {
}
public Node(int data, Node left, Node right) {
this.data = data;
this.leftChild = left;
this.rightChild = right;
}
}
package com.ccl.data.organization;
public class BinaryTree {
public int[] array = new int[] { 109, 12, 32, -1, -1, -1, 3, 543, -1, -1,
29, -1, -1 };
public int index = 0;
/**
*
*
* @since 2012/4/10 20:56
* @param node
* @return root <b> , </b>
*/
public Node init(Node node) {
if (array[index] == -1) {
node = null;
index++;// ++
} else {
node.leftChild = new Node();//
node.rightChild = new Node();//
node.data = array[index];
index++; // ++
node.leftChild = init(node.leftChild);
node.rightChild = init(node.rightChild);
}
return node;
}
/**
*
*
* @param node
*/
public void preorderTree(Node node) {
if (node != null) {
System.out.print("" + node.data + "\t");
preorderTree(node.leftChild);
preorderTree(node.rightChild);
}
}
/**
*
*
* @param node
*/
public void inorder(Node node) {
if (node == null)
return;
else {
inorder(node.leftChild);
System.out.print(node.data + "\t");
inorder(node.rightChild);
}
}
/**
*
*
* @param node
*/
public void postorder(Node node) {
if (node == null)
return;
else {
postorder(node.leftChild);
postorder(node.rightChild);
System.out.print(node.data + "\t");
}
}
@Override
public String toString() {
return super.toString();
}
}
package com.ccl.data.organization;
public class DataOrganizationDemo {
/**
* @param args
*/
public static void main(String[] args) {
BinaryTree tree = new BinaryTree();
Node root = new Node();
tree.init(root);
tree.preorderTree(root);
System.out.println();
tree.inorder(root);
System.out.println();
tree.postorder(root);
System.out.println();
}
}
저자: chengchanglun 2012-4-10 21:20:02 원문 링크 발표
읽기: 106 설명: 0 설명 보기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.