MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / inoder

Function inoder

CPP/binarytreeuse.cpp:141–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141void 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
151binarytree<int> * treebuilding(int *in, int *pre, int preS,int preE,int inS,int inE)
152{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected