Lines Matching refs:BiNode
49 BiNode::BiNode(){ in BiNode() function in BiNode
62 BiNode::~BiNode(){ in ~BiNode()
74 void BiNode::EnumNodes( Link aLink ) const{ in EnumNodes()
77 aLink.Call( (BiNode *)this ); in EnumNodes()
91 BiNode * BiNode::ChangeDLListBTree( BiNode * pList ){ in ChangeDLListBTree()
92 BiNode * pRightNode; in ChangeDLListBTree()
93 BiNode * pMiddle; in ChangeDLListBTree()
94 BiNode * pTmp; in ChangeDLListBTree()
108 pList = (BiNode *)0; in ChangeDLListBTree()
111 pTmp->pRight = (BiNode *)0; in ChangeDLListBTree()
115 pRightNode->pLeft = (BiNode *)0; in ChangeDLListBTree()
134 BiNode * BiNode::ChangeBTreeDLList(){ in ChangeBTreeDLList()
135 BiNode * pList; in ChangeBTreeDLList()
136 BiNode * pLL_RN; // linke Liste rechter Knoten in ChangeBTreeDLList()