题目描述:
题目思路:
递归找结点
//自己的代码测试过了,一直WA,贴上紫书的代码
AC代码
#include<cstdio> #include<cctype> #include<cstring> using namespace std; const int maxn = 200 + 10; int n; char buf[maxn][maxn]; // 递归遍历并且输出以字符buf[r][c]为根的树 void dfs(int r, int c) { printf("%c(", buf[r][c]); if(r+1 < n && buf[r+1][c] == '|') { // 有子树 int i = c; while(i-1 >= 0 && buf[r+2][i-1] == '-') i--; // 找"----"的左边界 while(buf[r+2][i] == '-' && buf[r+3][i] != '