Skip to content

Instantly share code, notes, and snippets.

View qubbit's full-sized avatar
🎯
Focusing

Gopal Adhikari qubbit

🎯
Focusing
View GitHub Profile
@qubbit
qubbit / huffman_test.c
Created July 22, 2013 07:50
Sorting Array of Structs
#include <stdlib.h>
#include <stdio.h>
#define ARRAY_SZ 5
typedef struct SingleChar
{
unsigned char Character;
unsigned int Weight;
} *SingleCharPtr;