59Medium
0/4

Explain how the merge sort algorithm operates to sort a list of data, such as the one shown in Figure 1.

Diagram showing the merge sort process on a list of four numbers: [85, 24, 63, 45]. Step 1 shows the list split into [85, 24] and [63, 45]. Step 2 shows them split into individual elements: [85], [24], [63], and [45]. Step 3 shows the elements merged into sorted pairs: [24, 85] and [45, 63]. Step 4 shows the final merged and sorted list: [24, 45, 63, 85].

[4]

Sorting algorithms Questions

Practise AQA GCSE Computer Science Sorting algorithms with exam-style questions for GCSE Computer Science. 62 questions, matched to the AQA GCSE Computer Science (8525) specification and written in Paper 1 and Paper 2 style. Every question includes a full worked solution and mark scheme, so you can see where marks are awarded rather than just whether you got the answer right.

PreviousNext

Sorting algorithms Questions

  1. GCSE
  2. /Computer Science
  3. /Sorting algorithms