프로그래밍 2015. 4. 8. 18:49

자료구조 (array 에서 트리까지) 복잡도

array  o(n)

Binary search tree 

 - worst : o(n)

 - 평균 : o(log n)

balenced binary search tree(ex. rb tree)

  - worst : o(log n)

b-tree

  - worst : O(log n)

hash table

  - O(1)

linked list

 - worst : O(N) <검색시 worst>

 - 삽입삭제시 O(1)


//