B-tree- Designed to solve : simple index(검색할 수 있는 도구) 는 용량이 커서 Disk 비용이 많이 발생 (용량이 크면 메인 메모리에 load 불가능함으로) - 개선한 것 => B+ tree Statement of the Problem- binary searching (1) n값이 커질수록 O(log2 n)가 커짐 (실제로 사용하기 힘듦) (2) 항상 정렬되어 있어야 함 (항상 정렬하는 비용이 많이 발생) Indexing with Binary Search Trees장점 : (1) 데이터가 정렬되어 있지 않아도 됌 (2) 트리가 balanced state일 때 좋은 성능을 가짐 (3) insert cost = search cost (최악의 경우를 ..