6. Linked Structures - 21. Linked Structure와 Array는 대체로 시간복잡도가 비슷하지만, size, clear, destructor는 array가 빠름그리고 Linked Structure에서 pointer 사용한다고 해서 이걸 크게 보기도 힘듬LinkedStructure는 확장성 Scalability(Flexibility)에서 우위를 가짐 = Efficient memory management => linked structure : memory management efficient, array : memory efficientUnsorted List1. 맨 앞에다가 넣어야 시간복잡도 O(1) 나옴(Stack 이랑 비슷)template void UnsortedType::a..