Data Structures UFC  1.0.0
Essential Data Structures for C language
Data Structures
Here are the data structures with brief descriptions:
 CBinaryNode
 CCircleDefine a Circle structure Has the fields hidden by struct circle as (Point* center) and (float radius)
 CListCircularA List circular data structure. The last *next pointer points to the first
 CListDoubleLinked List with double pointers
 CListNode
 CPointStruct Point as 2D space pointer
 CPQueuePriority Queue Data Structure. Like a normal queue about push/pop logic, but each individual now heave a weight. A inner heap implementation it's provided