Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
124364 YYYY 前序遍历 C++ 运行超时 20 1000 MS 264 KB 567 2024-01-23 12:55:30

Tests(2/10):


#include<iostream> using namespace std; int l[2<<15],r[2<<15]; int n,x,root; void insert(int value,int now){ if(x>=now){ if(r[now]==0){ r[now] = value; return ; } insert(value,r[now]); } else{ if(l[now]==0){ l[now] = value; return ; } insert(value,l[now]); } } void pre_out(int node){ if(node==0){ return ; } printf("%d ",node); pre_out(l[node]); pre_out(r[node]); } int main(){ cin >> n >> root; for(int i =2;i <= n;i++){ scanf("%d",&x); insert(x,root); } pre_out(root); return 0; }


测评信息: