[C#] 컬렉션(Collection)과 제네릭 컬렉션(Generic Collection) 정리

Running boy·2023년 8월 15일
0

컴퓨터 공학

목록 보기
33/36
컬렉션제네릭 컬렉션내부 구현삽입탐색제거
ArrayListList<>ArrayO(1)O(n)O(n)
SortedListSortedList<,>ArrayO(log n)O(log n)O(n)
StackStack<>ArrayO(1)-O(1)
QueueQueue<>ArrayO(1)-O(1)
HashTableDictionary<,>Array(hashing)/HashTableO(1)O(1)O(1)
HashSet<>HashTableO(1)O(1)O(1)
LinkedList<>LinkedListO(1)O(n)O(n)
SortedSet<>Red-Black TreeO(log n)O(log n)O(log n)
SortedDictionary<,>Red-Black TreeO(log n)O(log n)O(log n)
PriorityQueue<>Min-HeapO(1)/O(log n)O(1)/O(log n)O(log n)
profile
Runner's high를 목표로

0개의 댓글