Mental Model
Split the list into smaller parts, sort each part, then join them back together in order.
Analogy: Imagine sorting a big pile of cards by splitting them into small piles, sorting each small pile, then carefully combining the piles back into one sorted stack.
Unsorted list: [38, 27, 43, 3, 9, 82, 10] Split into halves: [38, 27, 43] [3, 9, 82, 10] Split further: [38] [27, 43] [3, 9] [82, 10] Sorted and merged: [27, 38, 43] [3, 9, 10, 82] Final sorted list: [3, 9, 10, 27, 38, 43, 82]