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

Function buildtree

CPP/binarytreeuse.cpp:190–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188}
189
190binarytree<int> * buildtree(int *in,int *pre,int size)
191{
192 return treebuilding(in , pre , 0 , size -1 , 0 , size - 1);
193}
194
195int height(binarytree<int>*root)
196{

Callers

nothing calls this directly

Calls 1

treebuildingFunction · 0.85

Tested by

no test coverage detected