HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🐣
프론트엔드 데브코스 3기 교육생
/
📚
3기 스터디 가이드
/
🧑‍💻
CS 학습 및 면접대비 스터디
/
⛵
정렬(합병, 퀵, 힙, 계수)
⛵

정렬(합병, 퀵, 힙, 계수)

URL
https://github.com/dmswl98/TIL/blob/main/cs/algorithm/%EC%A0%95%EB%A0%AC.md
발표자
은지
과목
알고리즘
Merge Sort for Linked Lists - GeeksforGeeks
Merge sort is often preferred for sorting a linked list. The slow random-access performance of a linked list makes some other algorithms (such as quicksort) perform poorly, and others (such as heapsort) completely impossible. Let the head be the first node of the linked list to be sorted and headRef be the pointer to head.
Merge Sort for Linked Lists - GeeksforGeeks
https://www.geeksforgeeks.org/merge-sort-for-linked-list/
Merge Sort for Linked Lists - GeeksforGeeks