2011年3月21日 星期一

[ Data Structures with Java ] Section 17.4 : Drawing a Binary Tree


Preface :
View the display of the tree as a rectangular grid with a cell denoted by the pair (level, column) in console. The level is a row in the grid corresponding to a level in the tree. The column coordinate designates a region of the display measured left to right. Below figure is the representation of Tree in the grid. The algorithm to display a tree uses a recursive scan to create a copy of the original tree. The copy is called a shadow tree. The nodes of the shadow tree store the value of the node in the original tree formatted as a string and the (level, col) position of the shadow tree node in the grid. A level-order scan of the shadow tree displays the nodes :


Building a Shadow Tree :
The recursive function buildShadowTree() uses an inorder scan (LNR) of the original tree to build a shadow tree. As the inorder scan progress, we move from one grid column to another. For instance, with Tree upper, the order of visits is B > D > A > E > C. Note in upper figure that this is the column-order for the nodes in the tree.
A shadow tree uses an augmented node structure for its elements. The TNodeShadow objects have the basic TNode structure, with additional variables leveland column that specify the coordinates for a cell in the grid. The variable nodeValueStr is a string that describe the value for a node in the original tree. For instance, if a tree node has integer 135, then the nodeValueStr in the corresponding shadow tree is "135".
The algorithm for buildShadowTree() resembles copyTree() with the exception that it makes an inorder scan of the original tree rather than a postorder scan. Each recursive call allocates a TNodeShado object and assigns it the string that corresponds to the value of the node in the original tree. If then makes recursive calls that create the left and right subtrees. You will notice that TNodeShadow class has a static variable columnValue. This variable is key to the algorithm. Because the variables is static, it is global to the recursive process. Each recursive call in the inorder scan creates a node in the column specified by columnValue and then increments the variable for the subsequent recursive call. In this way, columnValue has values ranging from 0 for the first visit (left most node) to n-1 for a visit to the rightmost node. The buildShadowTree() method has two parameters. The TNode reference t provides access to the value of the original tree node. An integer denotes the level in the tree :
- Method buildShadowTree() implementation :
  1. public static TNodeShadow buildShadowTree(TNode t, int level) {  
  2.     TNodeShadow newNode = null;  
  3.     if(t!=null) {  
  4.         newNode = new TNodeShadow();  
  5.         TNodeShadow newLeft = buildShadowTree(t.left, level+1);  
  6.         newNode.left = newLeft;  
  7.         newNode.nodeValueStr = t.nodeValue.toString();  
  8.         newNode.column = TNodeShadow.columnValue;  
  9.         newNode.level = level;  
  10.         TNodeShadow.columnValue++;  
  11.         newNode.right = buildShadowTree(t.right, level+1);  
  12.     }  
  13.     return newNode;  
  14. }  

Displaying a Shadow Tree :
The method displayTree() takes the root t, of the binary tree as an argument and calls buildShadowTree() to create a shadow tree :
// build the shadow tree
TNodeShadow shadowRoot = buildShadowTree(t, 0);

The algorithm displays the tree using a level-order scan of shadow tree nodes. Each shadow tree node provides the node value as a string and the (level, column) coordinate for an element. The scan uses a queue of TNodeShadow objects to store and access the nodes. As shadow tree nodes emerge from the queue the displayTree() method positions the value at (level, col) in the grid. To determine the location of each node in the grid, we use the argumentmaxCharacters, which is the number of characters in the longest node value. The variable colWidth, with value maxCharacters + 1, defines the width of each cell in the display. The variable currLevel is the current level during the scan and variable currCol is the current column coordinate in the grid. The string representation of the tree is stored in the variable displayStr.
As nodes are popped from the queue into the reference variable currNode, display Tree() carries out of the task of displaying the node value (currNode.nodeValueStr) at the grid coordinates (currNode.level, currNode.column). The column position combines with the value of colWidth to specify how far we must move to the right before inserting the node. Because the level-order scan visits siblings from left to right, the distance of the move is determined by comparing the column positions for successive siblings. The variable currLevel maintains a record of the current level (line) on which nodes are displayed. The value of the currLevel is incremented whenever a node is popped from the queue with a level greater than colLevel. The implementation simply inserts a newline character to move down one level. The string continues to add node values on the same level until another change is required. The private methods formatString() output a string in a specified number of print positions. They are used to position the tree nodes in their proper columns. Below is the whole implementation of how to display a tree :
- Class TNodeShadow : Display a tree
  1. package DSwJ.S17;  
  2.   
  3. import DSwJ.S15.LinkedQueue;  
  4. import DSwJ.S16.TNode;  
  5.   
  6. public class TNodeShadow {  
  7.     public static int columnValue=0;  
  8.     public String nodeValueStr;  
  9.     public int level, column;  
  10.     public TNodeShadow left, right;  
  11.       
  12.     public TNodeShadow(){}  
  13.       
  14.     public static TNodeShadow buildShadowTree(TNode t, int level) {  
  15.         TNodeShadow newNode = null;  
  16.         if(t!=null) {  
  17.             newNode = new TNodeShadow();  
  18.             TNodeShadow newLeft = buildShadowTree(t.left, level+1);  
  19.             newNode.left = newLeft;  
  20.             newNode.nodeValueStr = t.nodeValue.toString();  
  21.             newNode.column = TNodeShadow.columnValue;  
  22.             newNode.level = level;  
  23.             TNodeShadow.columnValue++;  
  24.             newNode.right = buildShadowTree(t.right, level+1);  
  25.         }  
  26.         return newNode;  
  27.     }  
  28.       
  29.     public static void clearShadowTree(TNodeShadow node) {  
  30.         if(node!=null) {  
  31.             clearShadowTree(node.left);  
  32.             clearShadowTree(node.right);  
  33.             node = null;  
  34.         }  
  35.     }  
  36.     protected static String formatString(int c, String str){  
  37.         StringBuffer spaceBuf = new StringBuffer("");  
  38.         spaceBuf.append(str);  
  39.         for(int i=str.length()+1; i<=c; i++) spaceBuf.append(" ");  
  40.         return spaceBuf.toString();  
  41.     }  
  42.     public static String displayTree(TNode t, int maxCharacters) {  
  43.         LinkedQueue q = new LinkedQueue();  
  44.         String displayStr="";  
  45.         int colWidth = maxCharacters+1;  
  46.         int currLevel=0, currCol=0;  
  47.         if(t==nullreturn displayStr;  
  48.         TNodeShadow shadowRoot = buildShadowTree(t, 0);  
  49.         q.push(shadowRoot);  
  50.         while(!q.isEmpty()) {  
  51.             TNodeShadow currNode = q.pop();  
  52.             if(currLevel < currNode.level) {  
  53.                 currLevel = currNode.level;  
  54.                 currCol = 0;  
  55.                 displayStr+="\n";  
  56.             }  
  57.             if(currNode.left!=null) q.push(currNode.left);  
  58.             if(currNode.right!=null) q.push(currNode.right);  
  59.             if(currCol
  60.                 displayStr+=formatString((currNode.column-currCol)*colWidth, " ");  
  61.                 currCol = currNode.column;  
  62.             }  
  63.             displayStr+=formatString(colWidth, currNode.nodeValueStr);;  
  64.             currCol++;  
  65.         }  
  66.         displayStr+="\n";  
  67.         clearShadowTree(shadowRoot);  
  68.         return displayStr;  
  69.     }  
  70.       
  71.     public static void main(String args[]) {  
  72.         TNode root = new TNode("A");  
  73.         root.left = new TNode("B");  
  74.         root.right = new TNode("C");  
  75.         root.left.right = new TNode("D");  
  76.         root.right.left = new TNode("E");  
  77.         System.out.println(TNodeShadow.displayTree(root, 1));  
  78.     }  
  79. }  
This message was edited 2 times. Last update was at 22/03/2011 09:59:01

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...