Huffman Zipper  v-1.0
Data Compression and Decompression using Greedy Huffman Algorithm
HashMap< KeyType, ValueType >::Entry Struct Reference

Type definition for each cells in the bucket chain. More...

Public Attributes

KeyType key
 
ValueType value
 
Entrynext
 

Detailed Description

template<typename KeyType, typename ValueType>
struct HashMap< KeyType, ValueType >::Entry

Type definition for each cells in the bucket chain.

Definition at line 18 of file HashMap.h.

Member Data Documentation

◆ key

template<typename KeyType , typename ValueType >
KeyType HashMap< KeyType, ValueType >::Entry::key

Definition at line 19 of file HashMap.h.

◆ next

template<typename KeyType , typename ValueType >
Entry* HashMap< KeyType, ValueType >::Entry::next

Definition at line 21 of file HashMap.h.

◆ value

template<typename KeyType , typename ValueType >
ValueType HashMap< KeyType, ValueType >::Entry::value

Definition at line 20 of file HashMap.h.