-树的类定义-数据结构
2-3树的类定义: template class Two3; template class Two3Node { friend class Two3; public: int compare(const Type); private: Element dataL, dataR; Two3Node *LeftChild, *MiddleChild, *RightChild; };
文件大小:4.19MB
评论区