Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
121446 | 陈志轩 | 前序遍历 | C++ | 运行超时 | 20 | 1000 MS | 260 KB | 1319 | 2024-01-21 19:34:10 |
#include<bits/stdc++.h> #define int long long using namespace std; namespace Fast{ inline int fr(){ register int x = 0,f = 1; static char c = getchar(); while (c < '0' || c > '9'){ if (c == '-'){ f = -1; } c = getchar(); } while (c >= '0' && c <= '9'){ x = (x << 1) + (x << 3) + (c ^ 48); c = getchar(); } return x * f; } inline void fw(int x){ if (x == 0){ putchar('0'); return ; } if (x < 0){ putchar('-'); x = -x; } stack <char> s; while (x){ s.push(x % 10 + 48); x /= 10; } while (!s.empty()){ putchar(s.top()); s.pop(); } } inline void DEBUG(){ puts("awa"); } inline void CCF(){ ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); } } using namespace Fast; int lt[114514],rt[114514]; void dfs(int u,int x){ if (x < u){ if (lt[u] == 0){ lt[u] = x; return ; } dfs(lt[u],x); } else{ if (rt[u] == 0){ rt[u] = x; return ; } dfs(rt[u],x); } } void sfd(int u){ cout<<u<<' '; if (lt[u]){ sfd(lt[u]); } if (rt[u]){ sfd(rt[u]); } } signed main(){ int n = fr(); int root = 0; for (int i = 1,x;i <= n;i++){ cin>>x; if (i == 1){ root = x; continue; } dfs(root,x); } sfd(root); return 0; }