Skip to content
Permalink
2881777c0e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (21 sloc) 557 Bytes
/* Copyright (C) 2023 Harry Clark - Student No. 12340530 */
/* DATE: 13/03/23 */
/* HUFFMAN CODE DEMONSTRATION */
/* JUST A LITTLE THING I WANTED TO MAKE FOR FUN AFTER WATCHING A
/* TOM SCOTT VIDEO ABOUT THE SUBJECT */
/* THIS IS THE MAIN FILE */
#ifndef MAIN
#define MAIN
/* SYSTEM INCLUDES */
#include <iostream>
/* NESTED INCLUDES */
#include "huffman_types.h"
int main(int argc, char** argv)
{
std::string INPUT = "Huffman";
TREE* GET_TREE = TREE::BUILD_TREE();
TREE::ENCODE;
TREE::DECODE;
return 0;
}
#endif