| 139 | } |
| 140 | |
| 141 | void inoder(binarytree<int>*root) |
| 142 | { |
| 143 | if(root==NULL) |
| 144 | return; |
| 145 | |
| 146 | inoder(root->left); |
| 147 | cout<<root->data<<" "; |
| 148 | inoder(root->right); |
| 149 | } |
| 150 | |
| 151 | binarytree<int> * treebuilding(int *in, int *pre, int preS,int preE,int inS,int inE) |
| 152 | { |
nothing calls this directly
no outgoing calls
no test coverage detected