用棧實現二叉樹的遍歷(非遞歸)

先實現棧 #include <stdio.h> #include <stdlib.h> #include <string.h> typedef  char ElemType; #define STACKSIZE 20 typedef struct st { ElemType *data; int top; int MaxSize; }stack; void Init_stack(stack *p)
相關文章
相關標籤/搜索