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

📄 tail.h

📁 Implementation for the Huffman Cod in Visual C++. Both, the encoder and the decoder take as input
💻 H
字号:
#pragma once

#include "HuffmanTree.h"

typedef struct nodT
{
	nodT *pNext;
	NOD_HUFFMAN* pInf;
}NOD_TAIL;

class Tail
{
public:
	// Constructor
	Tail(void);

	// Desctructor
	~Tail(void);

public:
	// Insert a nod
	void Insert(NOD_HUFFMAN* pNod);

	// Delete a nod
	void Delete();

public:
	// Get the first nod
	NOD_TAIL* GetFirst() const;

private:

	// The "tail"
	NOD_TAIL *m_pFirst;

	// The  head of the tail
	NOD_TAIL *m_pLast;

};

⌨️ 快捷键说明

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