优先队列优化哈夫曼编码

2024-06-02 18:36

本文主要是介绍优先队列优化哈夫曼编码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

个人小记


一、代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define MAX_NODE 80
#define MAX_STR 50
#define MAX_HEAP 100
#define father(i) ((i)/2)
#define left(i)   ((i)*2)
#define right(i)  ((i)*2+1)typedef struct Node
{int f;char ch;struct Node *lchild,*rchild;
}Node;typedef struct Heap
{int count,size;Node** __data,**data;
}Heap;void swap(Node** a,Node** b)
{Node* t=*a;*a=*b;*b=t;return ;
}void down_update(Heap*,int);Heap* init_heap(int n)
{Heap* h=(Heap*)malloc(sizeof(Heap));h->count=0;h->size=n;h->__data=(Node**)malloc(sizeof(Node*)*n);h->data=h->__data-1;return h;
}int isempty(Heap *h)
{return h->count==0;
}int isfull(Heap* h)
{return h->count==h->size;
}void up_update(Heap* h,int i)
{while(i>1&&h->data[i]->f<h->data[father(i)]->f){swap(&(h->data[i]),&(h->data[father(i)]));i=father(i);}return ;
}int push(Heap* h,Node* node)
{if(isfull(h)){printf("堆已满,无法压入\n");return 0;}h->data[++h->count]=node;up_update(h,h->count);return 1;
}Node* top(Heap* h)
{if(isempty(h)){printf("堆空,无法查看\n");return 0;}return h->data[1];
}int pop(Heap* h)
{if(isempty(h)){printf("堆空,无法弹出\n");return 0;}h->data[1]=h->data[h->count--];down_update(h,1);return 1;
}void down_update(Heap* h,int i)
{while(left(i)<=h->count){int min=i,l=left(i),r=right(i);if(h->data[min]->f>h->data[l]->f)min=l;if(right(i)<=h->count&&h->data[min]->f>h->data[r]->f)min=r;if(i==min)break;swap(&(h->data[i]),&(h->data[min]));i=min;}return ;
}Node* init_node(char ch,int f)
{Node* node=(Node* )malloc(sizeof(Node));node->f=f;node->ch=ch;node->lchild=node->rchild=NULL;return node;
}
int fc=0;
Node** init_arr(int n,int* s)
{fc=0;Node** arr=(Node**)malloc(sizeof(Node*)*n);for(int i=0;i<n;i++) arr[i]=(Node*)malloc(sizeof(Node));for(int i=0;i<256;i++){if(s[i]!=0){Node* node=init_node((char)i,s[i]);arr[fc]=node;fc++;}}return arr;
}void clear_tree(Node* root)
{if(root==NULL)return ;clear_tree(root->lchild);clear_tree(root->rchild);free(root);return ;
}int* count(char str[],int n)
{int *s=(int*)malloc(sizeof(int)*256);for(int i=0;i<256;i++)s[i]=0;for(int i=0;i<n;i++)s[(int)str[i]]+=1;return s;
}Node* CLO_build_halfman_tree(Node** arr,Heap* h,int n)
{for(int i=0;i<n-1;i++){Node* node1=top(h);pop(h);Node* node2=top(h);pop(h);Node* new_node=init_node('0',node1->f+node2->f);new_node->lchild=node1;new_node->rchild=node2;push(h,new_node);arr[n-i-2]=new_node;}return arr[0];
}void clear_heap(Heap* h)
{if(h==NULL)return ;free(h->__data);free(h);return ;
}void halfman_coding(Node* root,char buff[],int k)
{buff[k]=0;if(root->lchild==NULL&&root->rchild==NULL){printf("%c:%s\n",root->ch,buff);return ;}buff[k]='0';halfman_coding(root->lchild,buff,k+1);buff[k]='1';halfman_coding(root->rchild,buff,k+1);return ;
}int main()
{char str[MAX_STR];// scanf("%[^/n]",str);printf("请输入字符串:");fgets(str,MAX_STR,stdin);//s[strcspn(s,'\n')]=0;char *newline = strchr(str, '\n');if (newline != NULL) *newline = '\0';int* s=count(str,strlen(str));Node** arr=init_arr(MAX_NODE,s);Heap* h=init_heap(MAX_HEAP);for(int i=0;i<fc;i++)push(h,arr[i]);//压入堆Node* root=CLO_build_halfman_tree(arr,h,fc);char buff[MAX_STR];halfman_coding(root,buff,0);clear_tree(root);clear_heap(h);return 0;
}

二、测试结果

请输入字符串:aaaaabbccd
a:0
c:10
d:110
b:111

这篇关于优先队列优化哈夫曼编码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1024764

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

MyBatis 动态 SQL 优化之标签的实战与技巧(常见用法)

《MyBatis动态SQL优化之标签的实战与技巧(常见用法)》本文通过详细的示例和实际应用场景,介绍了如何有效利用这些标签来优化MyBatis配置,提升开发效率,确保SQL的高效执行和安全性,感... 目录动态SQL详解一、动态SQL的核心概念1.1 什么是动态SQL?1.2 动态SQL的优点1.3 动态S

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

一文详解SpringBoot响应压缩功能的配置与优化

《一文详解SpringBoot响应压缩功能的配置与优化》SpringBoot的响应压缩功能基于智能协商机制,需同时满足很多条件,本文主要为大家详细介绍了SpringBoot响应压缩功能的配置与优化,需... 目录一、核心工作机制1.1 自动协商触发条件1.2 压缩处理流程二、配置方案详解2.1 基础YAML

MySQL中慢SQL优化的不同方式介绍

《MySQL中慢SQL优化的不同方式介绍》慢SQL的优化,主要从两个方面考虑,SQL语句本身的优化,以及数据库设计的优化,下面小编就来给大家介绍一下有哪些方式可以优化慢SQL吧... 目录避免不必要的列分页优化索引优化JOIN 的优化排序优化UNION 优化慢 SQL 的优化,主要从两个方面考虑,SQL 语

MySQL中慢SQL优化方法的完整指南

《MySQL中慢SQL优化方法的完整指南》当数据库响应时间超过500ms时,系统将面临三大灾难链式反应,所以本文将为大家介绍一下MySQL中慢SQL优化的常用方法,有需要的小伙伴可以了解下... 目录一、慢SQL的致命影响二、精准定位问题SQL1. 启用慢查询日志2. 诊断黄金三件套三、六大核心优化方案方案

Redis中高并发读写性能的深度解析与优化

《Redis中高并发读写性能的深度解析与优化》Redis作为一款高性能的内存数据库,广泛应用于缓存、消息队列、实时统计等场景,本文将深入探讨Redis的读写并发能力,感兴趣的小伙伴可以了解下... 目录引言一、Redis 并发能力概述1.1 Redis 的读写性能1.2 影响 Redis 并发能力的因素二、

使用国内镜像源优化pip install下载的方法步骤

《使用国内镜像源优化pipinstall下载的方法步骤》在Python开发中,pip是一个不可或缺的工具,用于安装和管理Python包,然而,由于默认的PyPI服务器位于国外,国内用户在安装依赖时可... 目录引言1. 为什么需要国内镜像源?2. 常用的国内镜像源3. 临时使用国内镜像源4. 永久配置国内镜