System.out.println("please input the second letter!");
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)制作、網(wǎng)站設(shè)計(jì)、江城網(wǎng)絡(luò)推廣、小程序定制開發(fā)、江城網(wǎng)絡(luò)營銷、江城企業(yè)策劃、江城品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供江城建站搭建服務(wù),24小時(shí)服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com
char ch2 = tw.getChar();
if(ch2 == 'U') {System.out.println("Tuesday"); }
else if(ch2 == 'H') {System.out.println("Thursday"); }
class HaffmanNode //哈夫曼樹的結(jié)點(diǎn)類
{
int weight; //權(quán)值
int parent,left,right; //父母結(jié)點(diǎn)和左右孩子下標(biāo)
public HaffmanNode(int weight)
{
this.weight = weight;
this.parent=-1;
this.left=-1;
this.right=-1;
}
public HaffmanNode()
{
this(0);
}
public String toString()
{
return this.weight+", "+this.parent+", "+this.left+", "+this.right;
}
return code;
}
public static void main(String[] args)
{
int[] weight={5,29,7,8,14,23,3,11}; //指定權(quán)值集合
HaffmanTree htree = new HaffmanTree(weight);
System.out.println("哈夫曼樹的結(jié)點(diǎn)數(shù)組:\n"+htree.toString());
String[] code = htree.haffmanCode();
System.out.println("哈夫曼編碼:");
for (int i=0; icode.length; i++)
System.out.println(code[i]);
}
}
只要自己再加個(gè)類Tree就可以了。
代碼如下:
public class Tree {
double lChild, rChild, parent;
public Tree (double lChild, double rChild, double parent) {
this.lChild = lChild;
this.rChild = rChild;
this.parent = parent;
}
public double getLchild() {
return lChild;
}
public void setLchild(double lChild) {
this.lChild = lChild;
}
public double getRchild() {
return rChild;
}
public void setRchild(double rChild) {
this.rChild = rChild;
}
public double getParents() {
return parent;
}
public void setParents(double root) {
this.parent = root;
}
}
1)編寫函數(shù)實(shí)現(xiàn)選擇parent為0且權(quán)值最小的兩個(gè)根結(jié)點(diǎn)的算法
2)編寫函數(shù)實(shí)現(xiàn)統(tǒng)計(jì)字符串中字符的種類以及各類字符的個(gè)數(shù)。
3)編寫函數(shù)構(gòu)造赫夫曼樹。
4)編寫函數(shù)實(shí)現(xiàn)由赫夫曼樹求赫夫曼編碼表。
5)編寫函數(shù)實(shí)現(xiàn)將正文轉(zhuǎn)換為相應(yīng)的編碼文件。
6)編寫函數(shù)實(shí)現(xiàn)將編碼文件進(jìn)行譯碼。
7)編寫主控函數(shù),完成本實(shí)驗(yàn)的功能。