revised: 01/12/2017;

go to home page   go to next page

CHAPTER 110 — Sorting

Often, data is much easier to process if it is arranged into sorted order. Imagine how difficult it would be to use a dictionary if the words were not in order! Sorting is a fundamental computer operation. It is important for preparing data for other operations.

This chapter explains the concept of sorting and shows one of the common sorting algorithms, insertion sort. The next chapter shows another sorting algorithm.

The first few chapters in this section illustrate sorting algorithms by sorting arrays of integers. This is done to show how the algorithms work using simple data. Usually the data to be sorted is more complicated.

Chapter Topics:


QUESTION 1:

Is the following list of integers in sorted order? If not, sort the list into ascending order (smallest element on the left) by clicking and dragging.

 

Your browser does not support the HTML 5 Canvas.

 


go to home page   go to next page