您的位置:首页 > 其它

FreeBSD6.0Release下查看带宽使用情况的几个命令 转]

2008-03-09 09:44 351 查看
Let us consider the below traversals:

Inorder sequence: D B E A F C
Preorder sequence: A B D E C F

In a Preorder sequence, leftmost element is the root of the tree. So we know ‘A’ is root for given sequences. By searching ‘A’ in Inorder sequence, we can find out all elements on left side of ‘A’ are in left subtree and elements on right are in right subtree. So we know below structure now.

A
/   \
/       \
D B E     F C

We recursively follow above steps and get the following tree.

A
/   \
/       \
B         C
/ \        /
/     \    /
D       E  F

Algorithm: buildTree()

1) Pick an element from Preorder. Increment a Preorder Index Variable (preIndex in below code) to pick next element in next recursive call.

2) Create a new tree node tNode with the data as picked element.

3) Find the picked element’s index in Inorder. Let the index be inIndex.

4) Call buildTree for elements before inIndex and make the built tree as left subtree of tNode.

5) Call buildTree for elements after inIndex and make the built tree as right subtree of tNode.

6) return tNode.

 

TreeNode buildTree(char in[], char pre[], int inStr, int inEnd){
int preIndex = 0;
if(inStr > inEnd) return null;

TreeNode tNode = new TreeNode(pre[preIndex++]);
if(inStr == inEnd) return tNode;

int inIndex = search(in, inStr, inEnd, tNode.item);
tNode.left = buildTree(in, pre, inStr, inIndex - 1);
tNode.right = buildTree(in, pre, inIndex + 1, inEnd);
return tNode;
}

int search(char arr[], int strt, int end, char value){
int i;
for(i = strt; i <= end; i++){
if(arr[i] == value)
break;
}
return i;
}

 
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: