93全國資訊學科能力決賽 4. 經濟編碼
作法 : 霍夫曼編碼(Greedy)在這裡使用陣列做以及插入排序(不會指標)/***************************************************************/#include<stdlib.h>#include<stdio.h>double data[401],SUM;char ch[201][200];int xy[500][2]={0},top,used[500]={0};void DFS(int now,int L)...