BUAA 2014 급 데이터 구조 제5 차 컴퓨터 이 진 트 리 의 배열 변환 광의 표
7310 단어 데이터 구조
#include<cstdio>
#include<vector>
#include<queue>
#include<string.h>
#include<algorithm>
using namespace std;
struct node
{
int left, right, date;
}node[1005];
int a[1005], flag[1005];
void dfs(int father)
{
printf("%d", node[father].date);
if (node[father].left != -1 || node[father].right != -1) printf("(");
if (node[father].left != -1 && node[father].right == -1)
{
dfs(node[father].left);
printf(")");
}
else if (node[father].left == -1 && node[father].right != -1)
{
printf(",");
dfs(node[father].right);
printf(")");
}
else if (node[father].left != -1 && node[father].right != -1)
{
dfs(node[father].left);
printf(",");
dfs(node[father].right);
printf(")");
}
}
int main()
{
int n, i;
while (~scanf("%d", &n))
{
int numm = 1;
for (i = 0; i <= 1000; i++)
{
node[i].date = -1;
node[i].left = -1;
node[i].right = -1;
}
memset(flag, 0, sizeof(flag));
for (i = 1; i <= n; i++) scanf("%d", &a[i]);
int father = 1, jishu = 0;
node[numm].date = a[1]; numm++;
for (i = 2; i <= n; i++)
{
if (jishu == 0)
{
jishu++;
if (a[i] != -1)
{
node[father].left = numm;
node[numm].date = a[i];
numm++;
}
}
else if (jishu == 1)
{
if (a[i] != -1)
{
node[father].right = numm;
node[numm].date = a[i];
numm++;
}
jishu = 0;
father++;
}
}
dfs(1);
printf("
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.