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
- leetcode
- 문제풀이
- 자료구조
- 릿코드
- 관계형 모델
- Database
- ps
- Djikstra
- Network
- baekjoon
- Embedded
- 부트시퀀스
- swea
- 다익스트라
- dp
- 데이터베이스
- 네트워크
- DB
- BHS
- Application Layer
- 백준
- 전송 계층
- boot sequence
- BST
- 응용 계층
- Transport layer
- 임베디드
- C++
- STL
- 프로그래머스
Archives
- Today
- Total
목록BST (2)
BOBO's Note

Binary Tree 이진트리는 각 노드가 최대 2개의 자식을 갖는 트리이다. Binary Search Tree 이진 탐색 트리는 모든 노드 n에 대해 left subtree
Algorithm
2020. 6. 28. 02:15
[ LeetCode ] 98. Validate Binary Search Tree
https://leetcode.com/problems/validate-binary-search-tree/ Validate Binary Search Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 방법 Binary Search Tree는 모든 노드가 다음을 만족하는 이진트리이다. 모든 왼쪽 서브트리의 자식 노드 값 val >= max->val) return false; if(min != nullptr && root->val val) return f..
Algorithm/Problem Solving
2020. 6. 28. 01:39