Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
124101 YYYY 前序遍历 C++ 运行超时 20 1000 MS 256 KB 551 2024-01-23 10:56:27

Tests(2/10):


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


测评信息: