【C++數據結構】哈夫曼樹代碼實現

HuffeManTree.hnode #pragma once #include "Stack.h" // 我本身寫的棧 #include "Stack.cpp" template<class T> class CTree { public: CTree(void); public: T data = NULL; int weight = 1; CTree* l
相關文章
相關標籤/搜索