[번역] Performance of Array vs. Linked-List on Modern Computers
·
Data Structure/Linear
출처 : https://dzone.com/articles/performance-of-array-vs-linked-list-on-modern-comp Performance of Array vs. Linked-List on Modern Computers 위에서 설명했다시피 Linked-list는 특정 지점에서 Array보다 일반적으로 더 빨랐을지 모르지만, 현대 기술이 개선 된 후 배열이 더 선호되고 있다. 여기서 언급된 Array는 자동적으로 배열의 크기가 조정되는 Array (C++의 vector, Java의 ArrayList 혹은 C#의 List) 다. 물론 이론적으론... 지금까지 배운 이론적인 내용으로는 Linked-list가 Array에 비해서 random-insertion과 random-dele..