C 언어 하프 만 트 리 구현
// C
#include <stdio.h>
#include <stdlib.h>
typedef struct HuffmanNode
{
char letter;// , , #
struct HuffmanNode *parent;//
int code;// , 0, 1
}HuffmanNode;
typedef struct HeapNode
{
int rate;//
HuffmanNode *node;//
}HeapNode;
/*------------------ ----------------------*/
int heapSize;//
int num;//
HeapNode *heap;//
char *letter;//
int *rate;//
HuffmanNode **array; // ,
char ch;
/*---------------------- -------------------------*/
void init(int numOfLetters);//
void input();//
int parent(int i);//
int left(int i);//
int right(int i);//
void swap(int i,int j);//
void heapIfy(int i,int localHeapSize);// ,
void buildHeap();//
HeapNode* extractMin();//
void heapInsert(int rate,HuffmanNode *p);// ( : )
HuffmanNode* buildTree();//
void display();//
void backPrint(HuffmanNode *p,HuffmanNode *root);// code
/*---------------------- -------------------------*/
void init(int numOfLetters)
{
heapSize=numOfLetters;//
num=numOfLetters;//
heap=(HeapNode*)malloc((numOfLetters+1)*sizeof(HeapNode));// , , ,
letter=(char*)malloc((numOfLetters+1)*sizeof(char));//
rate=(int *)malloc((numOfLetters+1)*sizeof(int));//
array=(HuffmanNode **)malloc((numOfLetters+1)*sizeof(HuffmanNode));// ,
}
void input()
{
int i=1;
while(i<=heapSize)
{
printf(" %d
",i);
scanf("%c",&letter[i]);ch=getchar();
printf(" %d
",i);
scanf("%d",&rate[i]);ch=getchar();
//
heap[i].rate=rate[i];
heap[i].node=(HuffmanNode *)malloc(sizeof(HuffmanNode));
array[i]=heap[i].node;
heap[i].node->parent=NULL;
heap[i].node->letter=letter[i];
i++;
}
}
int parent(int i)
{
return i/2;
}
int left(int i)
{
return 2*i;
}
int right(int i)
{
return 2*i+1;
}
void swap(int i,int j) // ,
{
int rate;
HuffmanNode *p;
rate=heap[i].rate;
p=heap[i].node;
heap[i].rate=heap[j].rate;
heap[i].node=heap[j].node;
heap[j].rate=rate;
heap[j].node=p;
}
void heapIfy(int i,int localHeapSize)// ,
{
int l=left(i);
int r=right(i);
int least=i;
// heap rate i,left(i),right(i)
if(l<=localHeapSize&&heap[least].rate>heap[l].rate)
{
least=l;
}
if(r<=localHeapSize&&heap[least].rate>heap[r].rate)
{
least=r;
}
if(least!=i)
{
swap(i,least);
heapIfy(least,localHeapSize);
}
}
void buildHeap()//
{
int i=0;
for(i=heapSize/2;i>=1;i--)
{
heapIfy(i,heapSize);
}
}
HeapNode* extractMin()
{
if(heapSize>=1)
{
HeapNode *min;
swap(1,heapSize);
min=&heap[heapSize];
--heapSize;
heapIfy(1,heapSize);
return min;
}
else
{
printf(" ");
return NULL;
}
}
void heapInsert(int rate,HuffmanNode *p)
{
++heapSize;
int i=heapSize;
while(i>1&&heap[parent(i)].rate>rate)
{
heap[i].rate=heap[parent(i)].rate;
heap[i].node=heap[parent(i)].node;
i=parent(i);
}
heap[i].rate=rate;
heap[i].node=p;
}
HuffmanNode* buildTree()
{
buildHeap();//
HeapNode *p;//
HeapNode *q;//
int count=heapSize;
int i;
for(i=1;i<=count-1;i++)
{
HuffmanNode *tree=(HuffmanNode*)malloc(sizeof(HuffmanNode));//
tree->letter='#';// #,
p=extractMin();
q=extractMin();
p->node->parent=tree;
p->node->code=0;
q->node->parent=tree;
q->node->code=1;
//printf("%c:%d",p->node->letter,p->node->code);
//printf("
"); printf("%c:%d",q->node->letter,q->node->code); printf("
");//
heapInsert(p->rate+q->rate,tree);//
}
return extractMin()->node;
}
void display()
{
HuffmanNode*p=buildTree();////
int i=1;
while(i<=num)
{
printf("%c:",array[i]->letter);
backPrint(array[i],p);
printf("
");
i++;
}
}
void backPrint(HuffmanNode *p,HuffmanNode *root)
{
if(p!=root)
{
backPrint(p->parent,root);
printf("%d",p->code);//printf("++++");//
}
}
int main(int argc ,char* argv[])
{
int number;
printf(" :
");
scanf("%d",&number);
ch=getchar();
init(number);
input();
display();
system("PAUSE");
return 0;
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
C 언어 체인 시계는 뱀을 탐식하는 작은 게임을 실현한다본고의 실례는 여러분에게 C 언어 체인표가 뱀 탐식 게임을 실현하는 구체적인 코드를 공유하여 참고하도록 하였으며, 구체적인 내용은 다음과 같다. 프로젝트 이름: 뱀놀이 운영 환경: Linux 프로그래밍 언어: C 언...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.