Sorting - Merge Sort
merge sort
Merge Sort
- Merge Sort is a Divide and Conquer algorithm.
- It divides input array in two halves, keeps breaking those 2 halves recursively until they become too small to be broken further.
- Then each of the broken pieces are merged together to inch towards final answer.
- 리스트를 잘게 쪼갠 뒤 둘씩 크기를 비교해 정렬하고 분리된 리스트를 재귀적으로 합쳐서 정렬을 완성, 분할된 리스트를 저장해둘 공간이 필요해 메모리 소모량이 큰 편
Time & Space Complexity
- Time Complexity - O(n log n)
- Space Complexity - O(n)
When to Use/Avoid Merge Sort
When to use:
- When you need a
stable sort
- When average expected time is O(n log n)
- When you need a
When not to use:
- When space is a concern like embedded systems
Coding Merge Sort on Javascript
1 | function merge(arr1, arr2){ |
출처 : “Data Structures & Algorithms” by DS GUY