// // HeapDefine.h // SortingAlgorithm // // Created by MB Kyle Kwon on 10/14/12. // Copyright (c) 2012 MB Kyle Kwon. All rights reserved. // #ifndef SortingAlgorithm_HeapDefine_h #define SortingAlgorithm_HeapDefine_h #define MAX_ELEMENT 100 //허프만 생성시, 사용하는 최대히프 typedef struct { int heap[MAX_ELEMENT]; int heap_size; } HeapType; #endif