已知先序和中序,求后序

思路:html 由先序找到根节点,即先序的第一个元素,ide 而后从中序中找到它的位置,以肯定左右孩子,即它的左右两边的元素post 依次递归spa   #include <stdio.h> #include <stdlib.h> #include <string.h> #define status int #define OK 1 #define ERROR 0 #define OVERFLOW
相关文章
相关标签/搜索