摘要: 1 #include 2 /**** 3 * 此算法为满二叉树通过先序遍历数组获得后序遍历数组 4 ***/ 5 // a[]为pre数组,b[]为post数组 6 void get_lrn_by_nlr(char a[], int a_left, int a_right, char b[], int b_left, int b_right) 7 { 8 if (... 阅读全文
posted @ 2019-07-08 19:52 sqdtss 阅读(543) 评论(0) 推荐(0) 编辑