count什么意思c语言,count

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

#include 

#include 

#include 

#include 

#include 

typedef struct {

unsigned int weight;

unsigned int parent,lchild,rchild;

} HTNode,*HuffmanTree;

typedef char **HuffmanCode;

typedef struct {

unsigned int s1;

unsigned int s2;

} MinCode;

void Error(char *message);

HuffmanCode HuffmanCoding(HuffmanTree HT,HuffmanCode HC,unsigned int *w,unsigned int n);

MinCode Select(HuffmanTree HT,unsigned int n);

void Error(char *message)

{

clrscr();

fprintf(stderr,"Error:%s\n",message);

exit(1);

}

HuffmanCode HuffmanCoding(HuffmanTree HT,HuffmanCode HC,unsigned int *w,unsigned int n)

{

unsigned int i,s1=0,s2=0;

HuffmanTree p;

char *cd;

unsigned int f,c,start,m;

MinCode min;

if(n<=1) Error("Code too small!");

m=2*n-1;

HT=(HuffmanTree)malloc((m+1)*sizeof(HTNode));

for(p=HT,i=0;i<=n;i++,p++,w++)

{

p->weight=*w;

p->parent=0;

p->lchild=0;

p->rchild=0;

}

for(;i<=m;i++,p++)

{

p->weight=0;

p->parent=0;

p->lchild=0;

p->rchild=0;

}

for(i=n+1;i<=m;i++)

{

min=Select(HT,i-1);

s1=min.s1;

s2=min.s2;

HT[s1].parent=i;

HT[s2].parent=i;

HT[i].lchild=s1;

HT[i].rchild=s2;

HT[i].weight=HT[s1].weight+HT[s2].weight;

}

printf("HT List:\n");

printf("Number\t\tweight\t\tparent\t\tlchild\t\trchild\n");

for(i=1;i<=m;i++)

printf("%d\t\t%d\t\t%d\t\t%d\t\t%d\n",

i,HT[i].weight,HT[i].parent,HT[i].lchild,HT[i].rchild);

HC=(HuffmanCode)malloc((n+1)*sizeof(char *));

cd=(char *)malloc(n*sizeof(char *));

cd[n-1]='\0';

for(i=1;i<=n;i++)

{

start=n-1;

for(c=i,f=HT[i].parent;f!=0;c=f,f=HT[f].parent)

if(HT[f].lchild==c) cd[--start]='0';

else cd[--start]='1';

HC[i]=(char *)malloc((n-start)*sizeof(char *));

strcpy(HC[i],&cd[start]);

}

free(cd);

return HC;

}

MinCode Select(HuffmanTree HT,unsigned int n)

{

unsigned int min,secmin;

unsigned int temp;

unsigned int i,s1,s2,tempi;

MinCode code;

s1=1;s2=1;

for(i=1;i<=n;i++)

if(HT[i].parent==0)

{

min=HT[i].weight;

s1=i;

break;

}

tempi=i++;

for(;i<=n;i++)

if(HT[i].weight

{

min=HT[i].weight;

s1=i;

}

for(i=tempi;i<=n;i++)

if(HT[i].parent==0&&i!=s1)

{

secmin=HT[i].weight;

s2=i;

break;

}

for(i=1;i<=n;i++)

if(HT[i].weight

{

secmin=HT[i].weight;

s2=i;

}

if(s1>s2)

{

temp=s1;

s1=s2;

s2=temp;

}

code.s1=s1;

code.s2=s2;

return code;

}

void main()

{

HuffmanTree HT=NULL;

HuffmanCode HC=NULL;

unsigned int *w=NULL;

unsigned int i,n;

clrscr();

printf("Input n:\n");

scanf("%d",&n);

w=(unsigned int *)malloc((n+1)*sizeof(unsigned int *));

w[0]=0;

printf("Enter weight:\n");

for(i=1;i<=n;i++)

{

printf("w[%d]=",i);

scanf("%d",&w[i]);

}

HC=HuffmanCoding(HT,HC,w,n);

printf("HuffmanCode:\n");

printf("Number\t\tWeight\t\tCode\n");

for(i=1;i<=n;i++)

printf("%d\t\t%d\t\t%s\n",i,w[i],HC[i]);

}

程序运行:

首先用户先输入一个数n,以实现n个节点的Huffman Tree

之后输入权值w[1]~w[n],注意是unsigned int型数值。

然后程序自动生成Huffman Tree的存储形式的一张表格。

最后是Huffman Coding。

Sample Input:

Input n:

8

Enter weight:

w[1]=5

w[2]=29

w[3]=7

w[4]=8

w[5]=14

w[6]=23

w[7]=3

w[8]=11

Sample Output:

HT List:

Number   weight     parent    lchild     rchild

1        5          9         0          0

2        29         14        0          0

3        7          10        0          0

4        8          10        0          0

5        14         12        0          0

6        23         13        0          0

7        3          9         0          0

8        11         11        0          0

9        8          11        1          7

10       15         12        3          4

11       19         13        8          9

12       29         14        5          10

13       42         15        6          11

14       58         15        2          12

15       100        0         13         14

HuffmanCode:

Number   Weight     Code

1        5          0110

2        29         10

3        7          1110

4        8          1111

5        14         110

6        23         00

7        3          0111

8        11         010

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值