⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.h

📁 应用编码与计算机密码学>程序 如果好的话请发言
💻 H
字号:
#ifndef __node_h
#define __node_h

#include<string>
#include<iostream>
using namespace std;

struct Node{
	char letter;  //码字
	float probability;  //码字在文件中出现的概论
	string s;  //码字在概论树中的位置。左0右1

	Node *next;  
	Node *lchild;
	Node *rchild;

	Node(){
		next=NULL;
		lchild=NULL;
		rchild=NULL;
		letter='\0';
		s="";
	}
    


};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -