| 1 | Divide | [0..7] | Split into [0..3] and [4..7] | [38, 27, 43, 3, 9, 82, 10, 15] |
| 2 | Divide | [0..3] | Split into [0..1] and [2..3] | [38, 27, 43, 3, 9, 82, 10, 15] |
| 3 | Divide | [0..1] | Split into [0..0] and [1..1] | [38, 27, 43, 3, 9, 82, 10, 15] |
| 4 | Base case | [0..0] | Single element, no action | [38, 27, 43, 3, 9, 82, 10, 15] |
| 5 | Base case | [1..1] | Single element, no action | [38, 27, 43, 3, 9, 82, 10, 15] |
| 6 | Merge | [0..1] | Merge [38] and [27] into sorted [27, 38] | [27, 38, 43, 3, 9, 82, 10, 15] |
| 7 | Divide | [2..3] | Split into [2..2] and [3..3] | [27, 38, 43, 3, 9, 82, 10, 15] |
| 8 | Base case | [2..2] | Single element, no action | [27, 38, 43, 3, 9, 82, 10, 15] |
| 9 | Base case | [3..3] | Single element, no action | [27, 38, 43, 3, 9, 82, 10, 15] |
| 10 | Merge | [2..3] | Merge [43] and [3] into sorted [3, 43] | [27, 38, 3, 43, 9, 82, 10, 15] |
| 11 | Merge | [0..3] | Merge [27, 38] and [3, 43] into sorted [3, 27, 38, 43] | [3, 27, 38, 43, 9, 82, 10, 15] |
| 12 | Divide | [4..7] | Split into [4..5] and [6..7] | [3, 27, 38, 43, 9, 82, 10, 15] |
| 13 | Divide | [4..5] | Split into [4..4] and [5..5] | [3, 27, 38, 43, 9, 82, 10, 15] |
| 14 | Base case | [4..4] | Single element, no action | [3, 27, 38, 43, 9, 82, 10, 15] |
| 15 | Base case | [5..5] | Single element, no action | [3, 27, 38, 43, 9, 82, 10, 15] |
| 16 | Merge | [4..5] | Merge [9] and [82] into sorted [9, 82] | [3, 27, 38, 43, 9, 82, 10, 15] |
| 17 | Divide | [6..7] | Split into [6..6] and [7..7] | [3, 27, 38, 43, 9, 82, 10, 15] |
| 18 | Base case | [6..6] | Single element, no action | [3, 27, 38, 43, 9, 82, 10, 15] |
| 19 | Base case | [7..7] | Single element, no action | [3, 27, 38, 43, 9, 82, 10, 15] |
| 20 | Merge | [6..7] | Merge [10] and [15] into sorted [10, 15] | [3, 27, 38, 43, 9, 82, 10, 15] |
| 21 | Merge | [4..7] | Merge [9, 82] and [10, 15] into sorted [9, 10, 15, 82] | [3, 27, 38, 43, 9, 10, 15, 82] |
| 22 | Merge | [0..7] | Merge [3, 27, 38, 43] and [9, 10, 15, 82] into sorted [3, 9, 10, 15, 27, 38, 43, 82] | [3, 9, 10, 15, 27, 38, 43, 82] |
| 23 | Done | Full array | Array fully sorted | [3, 9, 10, 15, 27, 38, 43, 82] |