摘要: #include #include typedef struct Bitnode { int val; struct Bitnode *left; struct Bitnode *right; }Bitnode; Bitnode *CreatBitree_level() { int front = 1, rear = 0, x; struct Bitno... 阅读全文
posted @ 2018-11-20 21:27 企鹅君 阅读(182) 评论(0) 推荐(0)