以下是哈夫曼树的创建,怎么把节点值和权值由键盘输入改成从文件中读取信息://创造哈夫曼树 void CreateHuffmanTree(HuffmanTree &HT, int num) { int m,f; char c; m = 2 * num - 1; HT = new HTNode[m + 1]; //分配空间 for (int i = 1; i <= m; i++) //初始化 { HT[i].parent = 0; HT[i].lchild = 0; HT[i].rchild = 0; } cout << "请输入每个数据及其权值:" << endl; for (int i = 1; i <= num; i++) { printf("输入第%d个元素的=>\n",i); printf("\t结点值:"); scanf("%c",&c); HT[i].data=getchar(); printf("\t权值:"); scanf("%d",&f); HT[i].weight=f; //scanf("%d",HT[i].weight) ; //HT[i].data=n; //scanf("%[^\n]",HT[i].data); // cin >> HT[i].weight; // cin>>HT[i].data; } for (int i = num + 1; i <= m; i++) //构建哈夫曼树 { MIN min; min=Select(HT,i-1); //选择二叉树 HT[min.s1].parent = i; HT[min.s2].parent = i; HT[i].lchild = min.s1; HT[min.s1].num = "0"; HT[i].rchild = min.s2; HT[min.s2].num = "1"; HT[i].weight = HT[min.s1].weight + HT[min.s2].weight; HT[i].data = -1; } putlorinnum(HT, m); for (int i = 1; i <= m; i++) //进行每个字符哈夫曼码的输出 { if(HT[i].data != -1) { cout<<HT[i].data<<" 权重为"<<HT[i].weight<<" ,哈夫曼码为:"<<HT[i].num<<endl; cout<<endl; } } }
时间: 2024-01-07 22:05:17 浏览: 69
可以使用文件输入流来读取信息,具体操作如下:
1. 在头文件中添加 `#include<fstream>`,使用文件输入输出流需要包含这个头文件。
2. 打开文件,将文件中的信息读入到程序中。
```c++
ifstream infile("filename.txt"); //打开文件
if (!infile) //文件打开失败
{
cout << "文件打开失败!" << endl;
exit(1);
}
for (int i = 1; i <= num; i++)
{
printf("输入第%d个元素的=>\n",i);
printf("\t结点值:");
infile>>c;
HT[i].data = c;
printf("\t权值:");
infile>>f;
HT[i].weight = f;
}
infile.close(); //关闭文件
```
3. 将输入流对象作为参数传递给函数,即修改函数声明为:
```c++
void CreateHuffmanTree(HuffmanTree &HT, int num, ifstream &infile)
```
4. 在主函数中调用时,传递文件输入流对象作为参数:
```c++
ifstream infile("filename.txt"); // 打开文件
CreateHuffmanTree(HT, num, infile); // 调用函数
infile.close(); // 关闭文件
```
相关问题
对以下代码进行细致注释#pragma once #include <map> #include <iomanip> //哈夫曼树存储结构 struct HuffmanNode { int weight; //结点字符和权值 int parent, lchild, rchild; }; class Huffman { private: map<char, int> code; map<string, char> sc_code; map<char, string> cs_code; const int MAXWEIGHT = 2147483647; HuffmanNode* hf = NULL; int N = 0; public: //无参构造 Huffman(); //初始化 void Initialization(); //选择 void select(HuffmanNode*& hf, int n, int& s1, int& s2); //创建Huffman树 void createHuffmanTree(HuffmanNode*& hf, int n); //Huffman编码实现 char** createHuffmanCode(HuffmanNode*& hf, int n); //编码 void Encoding(); //译码 void Decoding(); //印代码文件 void Print(); //印哈夫曼树 void TreePrinting(); };
// 防止头文件重复引用
#pragma once
// 使用map需要引入的头文件
#include <map>
// 用于输出格式化的头文件
#include <iomanip>
// 定义哈夫曼树的结构体
struct HuffmanNode {
int weight; // 结点字符和权值
int parent, lchild, rchild; // 结点父节点、左孩子节点和右孩子节点
};
// 定义哈夫曼编码的类
class Huffman {
private:
// 原始字符 -> 权值的映射
map<char, int> code;
// 压缩后的二进制位 -> 原始字符的映射
map<string, char> sc_code;
// 原始字符 -> 压缩后的二进制位的映射
map<char, string> cs_code;
// 定义最大权值
const int MAXWEIGHT = 2147483647;
// 定义哈夫曼树的指针
HuffmanNode* hf = NULL;
// 定义哈夫曼树的结点数目
int N = 0;
public:
// 无参构造函数
Huffman();
// 初始化哈夫曼编码
void Initialization();
// 选择权值最小的两个结点
void select(HuffmanNode*& hf, int n, int& s1, int& s2);
// 创建哈夫曼树
void createHuffmanTree(HuffmanNode*& hf, int n);
// 实现哈夫曼编码
char** createHuffmanCode(HuffmanNode*& hf, int n);
// 编码
void Encoding();
// 译码
void Decoding();
// 输出压缩后的代码文件
void Print();
// 输出哈夫曼树的结构
void TreePrinting();
};
对上述给定的哈夫曼树且定义哈夫曼树中的结点的结构体都为的元素都为整型类型,试输入一串二进制编码,输出它的哈夫曼树中的节点对应的权值。用c语言写出并写出详细代码
假设给定的哈夫曼树结点的结构体定义如下:
```c
typedef struct HuffmanNode {
int weight; // 权值
int parent; // 父节点下标
int left; // 左子节点下标
int right; // 右子节点下标
} HuffmanNode, *HuffmanTree;
```
则可以通过以下代码实现输入二进制编码并输出对应的权值:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct HuffmanNode {
int weight;
int parent;
int left;
int right;
} HuffmanNode, *HuffmanTree;
// 根据给定的权值数组和权值个数创建哈夫曼树
void createHuffmanTree(HuffmanTree *tree, int *weights, int n) {
if (n <= 0) {
return;
}
*tree = (HuffmanNode*)malloc(sizeof(HuffmanNode) * (2 * n - 1));
for (int i = 0; i < n; i++) {
(*tree + i)->weight = *(weights + i);
(*tree + i)->parent = -1;
(*tree + i)->left = -1;
(*tree + i)->right = -1;
}
for (int i = n; i < 2 * n - 1; i++) {
(*tree + i)->weight = 0;
(*tree + i)->parent = -1;
(*tree + i)->left = -1;
(*tree + i)->right = -1;
}
for (int i = n; i < 2 * n - 1; i++) {
int min1 = -1, min2 = -2;
for (int j = 0; j < i; j++) {
if ((*tree + j)->parent == -1) {
if (min1 == -1) {
min1 = j;
} else if ((*tree + j)->weight < (*tree + min1)->weight) {
min2 = min1;
min1 = j;
} else if (min2 == -1 || (*tree + j)->weight < (*tree + min2)->weight) {
min2 = j;
}
}
}
(*tree + i)->weight = (*tree + min1)->weight + (*tree + min2)->weight;
(*tree + i)->left = min1;
(*tree + i)->right = min2;
(*tree + min1)->parent = i;
(*tree + min2)->parent = i;
}
}
// 根据给定的哈夫曼编码和码字长度获取对应的权值
int getWeightByHuffmanCode(HuffmanTree tree, char *code, int len) {
int nodeIndex = 2 * len - 2;
for (int i = 0; i < len; i++) {
if (*(code + i) == '0') {
nodeIndex = (tree + nodeIndex)->left;
} else if (*(code + i) == '1') {
nodeIndex = (tree + nodeIndex)->right;
}
}
return (tree + nodeIndex)->weight;
}
int main() {
HuffmanTree tree = NULL;
int weights[] = {7, 5, 2, 4};
int n = sizeof(weights) / sizeof(weights[0]);
createHuffmanTree(&tree, weights, n);
char code[] = "1101";
int weight = getWeightByHuffmanCode(tree, code, strlen(code));
printf("The weight is: %d\n", weight);
free(tree);
return 0;
}
```
其中,`createHuffmanTree`函数用于根据给定的权值数组和权值个数创建哈夫曼树;`getWeightByHuffmanCode`函数用于根据给定的哈夫曼编码和码字长度获取对应的权值。在`main`函数中,首先调用`createHuffmanTree`函数创建哈夫曼树,然后使用`getWeightByHuffmanCode`函数获取二进制编码`1101`对应的权值,并输出结果。
阅读全文