We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
이진 검색 트리에서 검색, 삽입, 삭제의 평균 시간은 Θ(log n) 시간인데, 균형이 잘 맞지 않는 경우에는 최대 Θ(n)의 시간이 될 수 있다. 따라서 이진 검색 트리의 균형이 잘 맞을 수 있게 특정 성질들을 정의해준 것이 균형 이진 검색 트리이다.
균형 이진 검색 트리
이러한 균형 이진 검색 트리에는 AVL 트리와 RB(레드-블랙) 트리가 있는데, 이진 검색 트리에 균형을 맞춰주는 균형 이진 검색 트리 외에도 균형 다진 검색 트리 또한 존재한다. 균형 다진 검색 트리의 대표로는 B-트리가 있다.
AVL 트리
RB(레드-블랙) 트리
균형 다진 검색 트리
B-트리
The text was updated successfully, but these errors were encountered:
L-j-h-c
No branches or pull requests
균형 검색 트리란?
이진 검색 트리에서 검색, 삽입, 삭제의 평균 시간은 Θ(log n) 시간인데, 균형이 잘 맞지 않는 경우에는 최대 Θ(n)의 시간이 될 수 있다.
따라서 이진 검색 트리의 균형이 잘 맞을 수 있게 특정 성질들을 정의해준 것이
균형 이진 검색 트리
이다.이러한 균형 이진 검색 트리에는
AVL 트리
와RB(레드-블랙) 트리
가 있는데, 이진 검색 트리에 균형을 맞춰주는 균형 이진 검색 트리 외에도균형 다진 검색 트리
또한 존재한다.균형 다진 검색 트리의 대표로는
B-트리
가 있다.The text was updated successfully, but these errors were encountered: