enum color {RED, BLACK}; typedef treeNode* ptrType; struct treeNode { treeItemType Item; ptrType LChildPtr, RChildPtr; color LColor, RColor; };