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 |
Tags
- hackerank
- 1253번
- 실습
- 백준
- 데이터베이스 배움터
- FBX
- command not found
- 2단계로킹
- C++
- 5639
- 1967번
- 언리얼 플러그인
- 1759번
- 백준 1253번
- 의미와 무의미의 경계에서
- UnrealMP
- 트랜잭션 관리
- 언리얼 커스텀 플러그인
- SQL
- oracle
- OS
- 셰그먼트트리
- UActor
- Unreal
- 민겸수
- Security
- objtofbx
- 비재귀셰그먼트
- 오손데이터읽기
- Linux
Archives
- Today
- Total
목록트리 (1)
fatalite
트리 순회 - 백준 1991
Problem 티어 : 실버 1 유형 : 트리, 탐색 체감 난이도 : 쉬움 접근 : Node 구조체 및 재귀 탐색 Solution #include #include using namespace std; struct node { char name; node* left = nullptr; node* right = nullptr; }; void inorder(node u) { if (u.left != nullptr) { inorder(*u.left); } cout a >> b >> c; //cout
코딩 인터뷰/C++
2023. 4. 8. 10:27