day 10

第 24 天: 二叉树的建立

只增加了一个构造方法, 相当于第 22 天的逆过程,使用一个线性表先分配所有节点的空间, 再将节点链接起来,最后并没有返回, 而是把第 0 个节点的相应值拷贝给自己。

package day20;
import java.util.Arrays;
import day20.CircleObjectQueue;
import day10.CircleIntQueue;
public class BinaryCharTree {
	char value;
	BinaryCharTree leftChild;
	BinaryCharTree rightChild;

	public BinaryCharTree(char paraName) {
		value = paraName;
		leftChild = null;
		rightChild = null;
	}// Of the constructor
	
	public BinaryCharTree(char[] paraDataArray, int[] paraIndicesArray) {
		int tempNumNodes = paraDataArray.length;
		BinaryCharTree[] tempAllNodes = new BinaryCharTree[tempNumNodes];
	    for(int i = 0; i < tempNumNodes; i++) {
	    	tempAllNodes[i] = new BinaryCharTree(paraDataArray[i]); 	
	    }//Of for i
	    
	    for(int i = 0; i < tempNumNodes; i++) {
	    	for(int j = 0; j < i; j++) {
	    		System.out.println("indices " + paraIndicesArray[j] + " vs. " + paraIndicesArray[i]);
	    		if(paraIndicesArray[i] ==paraIndicesArray[j] * 2 + 1) {
	    			tempAllNodes[j].leftChild = tempAllNodes[i];
					System.out.println("Linking " + j + " with " + i);
					break;
	    		}else if(paraIndicesArray[i] ==paraIndicesArray[j] * 2 + 2) {
	    			tempAllNodes[j].rightChild = tempAllNodes[i];
					System.out.println("Linking " + j + " with " + i);
					break;
	    		}//Of if
	    	}// Of for j
		} // Of for i
	    
	    value = tempAllNodes[0].value;
		leftChild = tempAllNodes[0].leftChild;
		rightChild = tempAllNodes[0].rightChild;
	}
	
	public static BinaryCharTree manualConstructTree() {
		BinaryCharTree resultTree = new BinaryCharTree('a');
		BinaryCharTree tempTreeB = new BinaryCharTree('b');
		BinaryCharTree tempTreeC = new BinaryCharTree('c');
		BinaryCharTree tempTreeD = new BinaryCharTree('d');
		BinaryCharTree tempTreeE = new BinaryCharTree('e');
		BinaryCharTree tempTreeF = new BinaryCharTree('f');
		BinaryCharTree tempTreeG = new BinaryCharTree('g');
		
		resultTree.leftChild = tempTreeB;
		resultTree.rightChild = tempTreeC;
		tempTreeB.rightChild = tempTreeD;
		tempTreeC.leftChild = tempTreeE;
		tempTreeD.leftChild = tempTreeF;
		tempTreeD.rightChild = tempTreeG;
		return resultTree;
	}// Of manualConstructTree
	public void preOrderVisit() {
		System.out.print("" + value + " ");

		if (leftChild != null) {
			leftChild.preOrderVisit();
		} // Of if
		
		if (rightChild != null) {
			rightChild.preOrderVisit();
		} // Of if
	}// Of preOrderVisit
	
	public void inOrderVisit() {
		if (leftChild != null) {
			leftChild.inOrderVisit();
		} // Of if

		System.out.print("" + value + " ");

		if (rightChild != null) {
			rightChild.inOrderVisit();
		} // Of if
	}// Of inOrderVisit

	public void postOrderVisit() {
		if (leftChild != null) {
			leftChild.postOrderVisit();
		} // Of if

		if (rightChild != null) {
			rightChild.postOrderVisit();
		} // Of if

		System.out.print("" + value + " ");
	}// Of postOrderVisit
	
	public int getDepth() {
		if(leftChild == null && rightChild ==null) {
			return 1;
		}// Of if
		
		int tempLeftDepth = 0;
		if(leftChild != null) {
			tempLeftDepth = leftChild.getDepth();
		}// Of if
		
		int tempRightDepth = 0;
		if (rightChild != null) {
			tempRightDepth = rightChild.getDepth();
		} // Of if
		
		if (tempLeftDepth >= tempRightDepth) {
			return tempLeftDepth + 1;
		} else {
			return tempRightDepth + 1;
		} // Of if
	}// Of getDepth
	
	public int getNumNodes() {
		if((leftChild == null) && (rightChild == null)) {
			return 1;
		}// Of if
		int tempLeftNodes = 0;
		if(leftChild != null) {
			tempLeftNodes = leftChild.getNumNodes();
		} // Of if
		
		int tempRightNodes = 0;
		if(rightChild != null) {
			tempRightNodes = rightChild.getNumNodes();
		} // Of if
		
		return tempLeftNodes + tempRightNodes + 1;
	}
    
	char[] valuesArray;
	int[] indicesArray;
	
	public void toDataArrays() {
		int tempLength = getNumNodes();
		
		valuesArray = new char[tempLength];
		indicesArray = new int[tempLength];
		int i = 0;
		
		CircleObjectQueue tempQueue = new CircleObjectQueue();
		tempQueue.enqueue(this);
		CircleIntQueue tempIntQueue = new CircleIntQueue();
		tempIntQueue.enqueue(0);
		
		BinaryCharTree tempTree = (BinaryCharTree) tempQueue.dequeue();
		int tempIndex = tempIntQueue.dequeue();
	    while(tempTree != null) {
	    	valuesArray[i] =tempTree.value;
	        indicesArray[i] = tempIndex;    
	        i++;
	        
	        if(tempTree.leftChild != null) {
	        	tempQueue.enqueue(tempTree.leftChild);
				tempIntQueue.enqueue(tempIndex * 2 + 1);
	        } // Of if
	        
	        if(tempTree.rightChild != null) {
	        	tempQueue.enqueue(tempTree.rightChild);
				tempIntQueue.enqueue(tempIndex * 2 + 2);
	        } // Of if
	        
            tempTree =  (BinaryCharTree) tempQueue.dequeue();
			tempIndex = tempIntQueue.dequeue();
	    }// Of while
	
	}// Of toDataArrays
	
	public void toDataArraysObjectQueue() {
		int tempLength = getNumNodes();
		
		valuesArray = new char[tempLength];
		indicesArray = new int[tempLength];
		int i = 0;
		
		CircleObjectQueue tempQueue = new CircleObjectQueue();
		tempQueue.enqueue(this);
		CircleObjectQueue tempIntQueue = new CircleObjectQueue();
		Integer tempIndexInteger = Integer.valueOf(0);
		tempIntQueue.enqueue(tempIndexInteger);

		BinaryCharTree tempTree = (BinaryCharTree) tempQueue.dequeue();
		int tempIndex = ((Integer)tempIntQueue.dequeue()).intValue();
		System.out.println("tempIndex = " + tempIndex);
		while(tempTree != null) {
			valuesArray[i] =tempTree.value;
			indicesArray[i] =tempIndex;
			i++;

	        if(tempTree.leftChild != null) {
	        	tempQueue.enqueue(tempTree.leftChild);
				tempIntQueue.enqueue(tempIndex * 2 + 1);
	        } // Of if
	        
	        if(tempTree.rightChild != null) {
	        	tempQueue.enqueue(tempTree.rightChild);
				tempIntQueue.enqueue(tempIndex * 2 + 2);
	        } // Of if
	        tempTree =  (BinaryCharTree) tempQueue.dequeue();
	        if(tempTree == null) {
	        	break;
	        }//Of if
			tempIndex = ((Integer)tempIntQueue.dequeue()).intValue();
		}//Of while
	}//Of toDataArraysObjectQueue
	public static void main(String[] args) {
		
		BinaryCharTree tempTree = manualConstructTree();
		System.out.println("\r\nPreorder visit:");
		tempTree.preOrderVisit();
		System.out.println("\r\nIn-order visit:");
		tempTree.inOrderVisit();
		System.out.println("\r\nPost-order visit:");
		tempTree.postOrderVisit();

		System.out.println("\r\n\r\nThe depth is: " + tempTree.getDepth());
		System.out.println("The number of nodes is: " + tempTree.getNumNodes());
	
		tempTree.toDataArrays();
		System.out.println("The values are: " + Arrays.toString(tempTree.valuesArray));
		System.out.println("The indices are: " + Arrays.toString(tempTree.indicesArray));
		
		tempTree.toDataArraysObjectQueue();
		System.out.println("Only object queue.");
		System.out.println("The values are: " + Arrays.toString(tempTree.valuesArray));
		System.out.println("The indices are: " + Arrays.toString(tempTree.indicesArray));
		
		char[] tempCharArray = {'A', 'B', 'C', 'D', 'E', 'F'};
		int[] tempIndicesArray = {0, 1, 2, 4, 5, 12};
		BinaryCharTree tempTree2 = new BinaryCharTree(tempCharArray, tempIndicesArray);
		
		System.out.println("\r\nPreorder visit:");
		tempTree2.preOrderVisit();
		System.out.println("\r\nIn-order visit:");
		tempTree2.inOrderVisit();
		System.out.println("\r\nPost-order visit:");
		tempTree2.postOrderVisit();
	}// Of main
}// Of BinaryCharTree

运行截图:

最近学习这些树的代码的时候需要思考蛮久的,所以得多复习,学完这几天的树的内容后每天会再复习一遍这些代码,加深记忆。

第 25 天: 二叉树深度遍历的栈实现 (中序)

今天先来做中序. 分成两个子任务.

25.1 具有通用性的对象栈

package day20;

public class ObjectStack {

	public static final int MAX_DEPTH = 10;
	int depth;
	Object[] data;
	public ObjectStack() {
		depth = 0;
		data = new Object[MAX_DEPTH];
	}//Of the first constructor
	
	public String toString() {
		String resultString = " ";
		for(int i = 0; i < depth; i++) {
			resultString += data[i];
		}//Of for i
		
		return resultString;
	}//Of toString
	
	public boolean push(Object paraObject) {
		if(depth == MAX_DEPTH) {
			System.out.println("Stack full.");
			return false;
		} // Of if
		data[depth] = paraObject;
		depth++;
		
		return true;
	}//Of push
	
	public Object pop() {
		if(depth == 0) {
			System.out.println("Nothing to pop.");
			return '\0';
		} // of if
		
		depth--;
		Object resultObject = data[depth];
		
		return resultObject;
	}
	
	public boolean isEmpty() {
		if(depth == 0) {
			return true;
		}//Of if
		
		return false;
	}//Of isEmpty
	
	public static void main(String[] args) {
		ObjectStack tempStack = new ObjectStack();
		
		for(char ch = 'a'; ch < 'm'; ch++) {
			tempStack.push(ch);
			System.out.println("The current stack is: " + tempStack);
		}// Of for i
		 
		char tempChar;
		for(int i = 0; i < 12; i++) {
			tempChar = (Character)tempStack.pop();
			System.out.println("Poped: " + tempChar);
			System.out.println("The current stack is: " + tempStack);
		}//Of for i
	}// Of main
}//Of class ObjectStack

运行截图:

 

25.2 中序遍历

package day20;
import java.util.Arrays;
import day20.CircleObjectQueue;
import day10.CircleIntQueue;
import  day20.ObjectStack;
public class BinaryCharTree {
	char value;
	BinaryCharTree leftChild;
	BinaryCharTree rightChild;

	public BinaryCharTree(char paraName) {
		value = paraName;
		leftChild = null;
		rightChild = null;
	}// Of the constructor
	
	public BinaryCharTree(char[] paraDataArray, int[] paraIndicesArray) {
		int tempNumNodes = paraDataArray.length;
		BinaryCharTree[] tempAllNodes = new BinaryCharTree[tempNumNodes];
	    for(int i = 0; i < tempNumNodes; i++) {
	    	tempAllNodes[i] = new BinaryCharTree(paraDataArray[i]); 	
	    }//Of for i
	    
	    for(int i = 0; i < tempNumNodes; i++) {
	    	for(int j = 0; j < i; j++) {
	    		System.out.println("indices " + paraIndicesArray[j] + " vs. " + paraIndicesArray[i]);
	    		if(paraIndicesArray[i] ==paraIndicesArray[j] * 2 + 1) {
	    			tempAllNodes[j].leftChild = tempAllNodes[i];
					System.out.println("Linking " + j + " with " + i);
					break;
	    		}else if(paraIndicesArray[i] ==paraIndicesArray[j] * 2 + 2) {
	    			tempAllNodes[j].rightChild = tempAllNodes[i];
					System.out.println("Linking " + j + " with " + i);
					break;
	    		}//Of if
	    	}// Of for j
		} // Of for i
	    
	    value = tempAllNodes[0].value;
		leftChild = tempAllNodes[0].leftChild;
		rightChild = tempAllNodes[0].rightChild;
	}
	
	public static BinaryCharTree manualConstructTree() {
		BinaryCharTree resultTree = new BinaryCharTree('a');
		BinaryCharTree tempTreeB = new BinaryCharTree('b');
		BinaryCharTree tempTreeC = new BinaryCharTree('c');
		BinaryCharTree tempTreeD = new BinaryCharTree('d');
		BinaryCharTree tempTreeE = new BinaryCharTree('e');
		BinaryCharTree tempTreeF = new BinaryCharTree('f');
		BinaryCharTree tempTreeG = new BinaryCharTree('g');
		
		resultTree.leftChild = tempTreeB;
		resultTree.rightChild = tempTreeC;
		tempTreeB.rightChild = tempTreeD;
		tempTreeC.leftChild = tempTreeE;
		tempTreeD.leftChild = tempTreeF;
		tempTreeD.rightChild = tempTreeG;
		return resultTree;
	}// Of manualConstructTree
	public void preOrderVisit() {
		System.out.print("" + value + " ");

		if (leftChild != null) {
			leftChild.preOrderVisit();
		} // Of if
		
		if (rightChild != null) {
			rightChild.preOrderVisit();
		} // Of if
	}// Of preOrderVisit
	
	public void inOrderVisit() {
		if (leftChild != null) {
			leftChild.inOrderVisit();
		} // Of if

		System.out.print("" + value + " ");

		if (rightChild != null) {
			rightChild.inOrderVisit();
		} // Of if
	}// Of inOrderVisit

	public void postOrderVisit() {
		if (leftChild != null) {
			leftChild.postOrderVisit();
		} // Of if

		if (rightChild != null) {
			rightChild.postOrderVisit();
		} // Of if

		System.out.print("" + value + " ");
	}// Of postOrderVisit
	
	public int getDepth() {
		if(leftChild == null && rightChild ==null) {
			return 1;
		}// Of if
		
		int tempLeftDepth = 0;
		if(leftChild != null) {
			tempLeftDepth = leftChild.getDepth();
		}// Of if
		
		int tempRightDepth = 0;
		if (rightChild != null) {
			tempRightDepth = rightChild.getDepth();
		} // Of if
		
		if (tempLeftDepth >= tempRightDepth) {
			return tempLeftDepth + 1;
		} else {
			return tempRightDepth + 1;
		} // Of if
	}// Of getDepth
	
	public int getNumNodes() {
		if((leftChild == null) && (rightChild == null)) {
			return 1;
		}// Of if
		int tempLeftNodes = 0;
		if(leftChild != null) {
			tempLeftNodes = leftChild.getNumNodes();
		} // Of if
		
		int tempRightNodes = 0;
		if(rightChild != null) {
			tempRightNodes = rightChild.getNumNodes();
		} // Of if
		
		return tempLeftNodes + tempRightNodes + 1;
	}
    
	char[] valuesArray;
	int[] indicesArray;
	
	public void toDataArrays() {
		int tempLength = getNumNodes();
		
		valuesArray = new char[tempLength];
		indicesArray = new int[tempLength];
		int i = 0;
		
		CircleObjectQueue tempQueue = new CircleObjectQueue();
		tempQueue.enqueue(this);
		CircleIntQueue tempIntQueue = new CircleIntQueue();
		tempIntQueue.enqueue(0);
		
		BinaryCharTree tempTree = (BinaryCharTree) tempQueue.dequeue();
		int tempIndex = tempIntQueue.dequeue();
	    while(tempTree != null) {
	    	valuesArray[i] =tempTree.value;
	        indicesArray[i] = tempIndex;    
	        i++;
	        
	        if(tempTree.leftChild != null) {
	        	tempQueue.enqueue(tempTree.leftChild);
				tempIntQueue.enqueue(tempIndex * 2 + 1);
	        } // Of if
	        
	        if(tempTree.rightChild != null) {
	        	tempQueue.enqueue(tempTree.rightChild);
				tempIntQueue.enqueue(tempIndex * 2 + 2);
	        } // Of if
	        
            tempTree =  (BinaryCharTree) tempQueue.dequeue();
			tempIndex = tempIntQueue.dequeue();
	    }// Of while
	
	}// Of toDataArrays
	
	public void toDataArraysObjectQueue() {
		int tempLength = getNumNodes();
		
		valuesArray = new char[tempLength];
		indicesArray = new int[tempLength];
		int i = 0;
		
		CircleObjectQueue tempQueue = new CircleObjectQueue();
		tempQueue.enqueue(this);
		CircleObjectQueue tempIntQueue = new CircleObjectQueue();
		Integer tempIndexInteger = Integer.valueOf(0);
		tempIntQueue.enqueue(tempIndexInteger);

		BinaryCharTree tempTree = (BinaryCharTree) tempQueue.dequeue();
		int tempIndex = ((Integer)tempIntQueue.dequeue()).intValue();
		System.out.println("tempIndex = " + tempIndex);
		while(tempTree != null) {
			valuesArray[i] =tempTree.value;
			indicesArray[i] =tempIndex;
			i++;

	        if(tempTree.leftChild != null) {
	        	tempQueue.enqueue(tempTree.leftChild);
				tempIntQueue.enqueue(tempIndex * 2 + 1);
	        } // Of if
	        
	        if(tempTree.rightChild != null) {
	        	tempQueue.enqueue(tempTree.rightChild);
				tempIntQueue.enqueue(tempIndex * 2 + 2);
	        } // Of if
	        tempTree =  (BinaryCharTree) tempQueue.dequeue();
	        if(tempTree == null) {
	        	break;
	        }//Of if
			tempIndex = ((Integer)tempIntQueue.dequeue()).intValue();
		}//Of while
	}//Of toDataArraysObjectQueue
	
	public void inOrderVisitWithStack() {
	    ObjectStack tempStack = new ObjectStack();
	    BinaryCharTree tempNode = this;
	    while(tempStack.isEmpty() != true || tempNode != null) {
	    	if(tempNode != null) {
	    		tempStack.push(tempNode);
	    		tempNode = tempNode.leftChild;
	    	}else {
	    		tempNode = (BinaryCharTree)tempStack.pop();
	    		System.out.print("" + tempNode.value + " ");
	    		tempNode = tempNode.rightChild;
	    	}//Of if
	    }//Of while
	}// Of inOrderVisit
	
	public static void main(String[] args) {
		
		BinaryCharTree tempTree = manualConstructTree();
		System.out.println("\r\nPreorder visit:");
		tempTree.preOrderVisit();
		System.out.println("\r\nIn-order visit:");
		tempTree.inOrderVisit();
		System.out.println("\r\nPost-order visit:");
		tempTree.postOrderVisit();

		System.out.println("\r\n\r\nThe depth is: " + tempTree.getDepth());
		System.out.println("The number of nodes is: " + tempTree.getNumNodes());
	
		tempTree.toDataArrays();
		System.out.println("The values are: " + Arrays.toString(tempTree.valuesArray));
		System.out.println("The indices are: " + Arrays.toString(tempTree.indicesArray));
		
		tempTree.toDataArraysObjectQueue();
		System.out.println("Only object queue.");
		System.out.println("The values are: " + Arrays.toString(tempTree.valuesArray));
		System.out.println("The indices are: " + Arrays.toString(tempTree.indicesArray));
		
		char[] tempCharArray = {'A', 'B', 'C', 'D', 'E', 'F'};
		int[] tempIndicesArray = {0, 1, 2, 4, 5, 12};
		BinaryCharTree tempTree2 = new BinaryCharTree(tempCharArray, tempIndicesArray);
		
		System.out.println("\r\nPreorder visit:");
		tempTree2.preOrderVisit();
		System.out.println("\r\nIn-order visit:");
		tempTree2.inOrderVisit();
		System.out.println("\r\nPost-order visit:");
		tempTree2.postOrderVisit();
		
		System.out.println("\r\nIn-order visit with stack:");
		tempTree2.inOrderVisitWithStack();
	}// Of main
}// Of BinaryCharTree

运行截图:

 中序的非递归实现没有想象的那么复杂,动手找几个例子打草稿很快就能理解。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值