Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sa02045 committed Jan 5, 2025
1 parent 68610a0 commit a0d288f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions data/blog/bst.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ tags: ['algorithm']
1. N의 왼쪽 하위 트리의 속한 모든 노드의 값은 N의 값보다 작다.
2. N의 오른쪽 하위 트리의 속한 모든 노드의 값은 N의 값보다 크다.

<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Binary_search_tree.svg/440px-Binary_search_tree.svg.png"
width="500"
/>

### 이진탐색트리, 왜 사용할까?

배열에 비해 어떤 장점이 있길래 이진탐색트리를 사용할까? 정렬된 데이터를 다룰 때 배열과 달리, 이진탐색트리는 데이터의 추가, 삭제, 탐색이 효율적이다.
Expand Down

0 comments on commit a0d288f

Please sign in to comment.