Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c++ #입출력 #속도 #ios #sync_with_stdio #cin #cout #tie
- hcpc
- 이분탐색 #dp #11053
- 20117
- boj #백준
- LIS #가장긴증가하는부분수열 #
- 레드아보
- 호반우 상인
- 30870
- 쌤쌤쌤
- c++ #boj #
- 3343
- backtracking #codetree #디버깅 #삼성코테
- 진법변환 #2to10 #10to2 #이진법 #십진법 #변환 #bitset #c++
- graph
- 1174
- 투포인터 #백준 #boj #20922 #22862
- 22869
- graph #최단경로
- 줄어드는수
- 최소 #공배수 #최대 #공약수 #유클리드 #호제법 #lcm #gcd #c++ #boj #3343 #백준 #장미
- 16202
- N번째큰수
- C++
- 백준
- 사이클 없는 그래프
- 코딩
- 3D #Reconstruction #computer #vision #volume #metric #tsdf #kinect #fusion
- BOJ
- 백준 #다익스트라 #dijkstra #9370 #c++
Archives
- Today
- Total
hyunjin
[SWEA 중위순회] 입력 버리기 , getline(cin,str) , getc(stdin) 본문
728x90
#include<iostream>
#include <string>
#include <cstring>
using namespace std;
int N;
char tree[102];
void inorder(int id) {
if (!tree[id] || id > N)
return;
inorder(id * 2);
cout << tree[id];
inorder(id * 2 + 1);
}
int main(int argc, char** argv)
{
int T = 10;
//cin >> T;
for (int test_case = 1; test_case <= T; ++test_case)
{
memset(tree, 0, sizeof(tree));
cin >> N;
for (int i = 1; i <= N;i++) {
int id; char c;
cin >> id >> c;
tree[id] = c;
//방법1
string str;
getline(cin, str);
// 방법2
// int tmp;
//while (getc(stdin) == ' ')
// cin >> tmp;
}
cout << "#" << test_case << " ";
inorder(1);
cout << "\n";
}
return 0;
}
728x90
'알고리즘 연습' 카테고리의 다른 글
최대공약수(GCD), 최소공배수(LCM) (0) | 2024.04.25 |
---|