PTA二叉树习题(二叉树翻转)
链接: link.这道题主要就是考察二叉树的重建和翻转,也就是左右子树互换。我们直接看代码。#include <bits/stdc++.h>using namespace std;const int N = 35;int str1[N],str2[N];struct node{ int data; struct node *l,*r;};struct node *create(int str1[],int str2[],int n){//根据先序遍历和