HuffmanTree

#include "stdafx.h" #include "stdio.h" #include "stdlib.h" #include "string.h" typedef int ELEMTYPE; //哈弗曼樹節點結構體 typedef struct HuffmanTree { ELEMTYPE weight; ELEMTYPE id;//區分權值相同的節點 struct Huffm
相關文章
相關標籤/搜索