Library Name | Trees | |||
Description | Binary tree routines | |||
Status | in production, code in use in released products | |||
Header Files |
|
|||
Functions | pBINTREE BinTreeCreate(pBINTREE pParentNode,void* pData); void BinTreeDelete(pBINTREE pRoot,BOOL bDeleteData); int BinTreeInsert(pBINTREE pRoot,void* pData,int (*pCmp)(void* p1,void* p2),int (*pAdd)(void** p1,void* p2)); int BinTreeWalkInOrder(pBINTREE pRoot,int (*pFn)(void* pData)); int BinTreeWalkInOrderReverse(pBINTREE pRoot,int (*pFn)(void* pData)); int BinTreeWalkPostOrder(pBINTREE pRoot,int (*pFn)(void* pData)); int BinTreeWalkPostOrderReverse(pBINTREE pRoot,int (*pFn)(void* pData)); int BinTreeWalkPreOrder(pBINTREE pRoot,int (*pFn)(void* pData)); int BinTreeWalkPreOrderReverse(pBINTREE pRoot,int (*pFn)(void* pData)); |
For more information, click here, or send email to codelibs@L5Software.com with "Library::Trees inquiry" in the subject line.
FKETM Code Libraries Home Page
Hosted by FKEinternet