摘要: 队列(Queue))顺序存储C语言实现 #define ERROR -1 typedef int ElemType; typedef int Position; typedef struct QNode* Queue; typedef struct QNode{ ElemType*data; Pos 阅读全文
posted @ 2020-05-03 10:31 余生以学 阅读(786) 评论(0) 推荐(0) 编辑
摘要: /* program to construct tree using inorder and preorder traversals */ #include <stdio.h> #include <stdlib.h> /* A binary tree node has data, pointer t 阅读全文
posted @ 2020-05-03 09:04 余生以学 阅读(498) 评论(0) 推荐(0) 编辑