To make computers go faster, it can be a lot more effective to have several slower computers working on a problem than a single fast one. This raises questions about how much of the computation can be done at the same time.
Here we use a fun team activity to demonstrate an approach to parallel sorting. It can be done on paper, but we like to get students to do it on a large scale, running from node to node in the network.
As an extra challenge for the children, have them do the activity completely silently
Use words (compared using dictionary order) instead of numbers for sorting. This will generally slow the children down, especially if some words start with the same letters
This is a good exercise for thinking about permutations. For example, with 6 people entering the sorting network, there are 6x5x4x3x2x1=720 possible orders that they can start in, yet only one way that they will come out. When children are designing their own sorting networks, they should test them with all possibly input patterns. For example, to check a 3-input sorting network, there are 6 (3x2x1) possible input permutations, and for 4 inputs there are 24 (4x3x2x1) permutations, and for n inputs there are n! (factorial) permutations. These numbers get larger very rapidly
Jeff Gray from University of Alabama at Birmingham has the following suggestion as an extension to this activity using robotics.
- Place the robots on an initial position in a sorting network.
- Have each robot generate a random number
- Have the robots do the pairwise comparison thorugh Bluetooth using unique identifiers of each robot
- Coordination of “Traffic” will be needed so the robots can move across the network so that they do not bump into each other.
An older version of this activity can be downloaded in PDF format here. The content is similar to the current version, but there's some extra technical information.
The Mathmaniacs web site has a similar activity (lesson 9)
For sorting networks of different sizes, there is a website that can generate them for you at http://pages.ripco.net/~jgamble/nw.html. It uses a slightly different notation, which is explained in the Wikipedia entry
Sorting Networks is demonstrated using Flash animation by Hiroki Manabe .
The paper Interactive Learning of Algorithms, by Jarmo Rantakokko, evaluates teaching parallel sorting algorithms (not sorting networks) using animation. It provides some nice ways to visualise other algorithms, and also discusses the benefit of animation and kinesthetic activities compared with text book descriptions.
University of Tennessee Department of Computer Science has an introductory CS module intended to teach Networks and the Internet using animation. Note: This site is best viewed in Internet Explorer.