이진탐색트리란
A binary search tree is a binary tree with the following properties:
1) The data stored at each node has a distinguished key which is unique in the tree and belongs to a total order.
2)The key of any node is greater than all keys occurring in its left subtree and less than all keys occurring in its right subtree.
이진 탐색 트리란 다음의 속성을 충족하는 2개의 자식노드를 갖고 있는 트리구조이다.
1) 각 노드에 저장된 데이터에는 트리에서 고유하고 전체 순서에 속하는 고유한 키가 있다.
2) 노드의 키는 왼쪽 하위 트리에서 발생하는 모든 키보다 크고, 오른쪽 하위 트리에서 발생하는 모든 키보다 작다. //이진탐색트리란 최대 2개이상의 자식노드를 가진 노드를 말하며,
이진탐색(Binary Search)와, 연결리스트(Linked List)를 결합한 자료구조의 일종이며,
이진탐색의 효율적인 탐색능력을 유지하면서도 입력과 삭제를 사용가능하게끔 만들어진 자료구조//