摘要: //二叉树重建的核心思想是利用递归和数组指针完成目的 #include #include #include void build( int n ,int *s1, int *s2, int *s ) { if( n <= 0 ) return; int p = strchr( s2, s1[0] )... 阅读全文