Science Fair Projects Ideas - Selection sort

All Science Fair Projects

      

Science Fair Project Encyclopedia for Schools!

  Search    Browse    Forum  Coach    Links    Editor    Help    Tell-a-Friend    Encyclopedia    Dictionary     

Science Fair Project Encyclopedia

For information on any area of science that interests you,
enter a keyword (eg. scientific method, molecule, cloud, carbohydrate etc.).
Or else, you can start by choosing any of the categories below.

Selection sort

Selection sort is a sort algorithm that works as follows:

  1. find the minimum value in the list
  2. swap it with the value in the first position
  3. find the minimum value amongst the remaining values
  4. swap it with the value in the second position
  5. repeat until the list is sorted

If you had to invent a sort algorithm on your own, you'd probably write an algorithm similar to selection sort because it is probably the most intuitive and immediate to invent.

This algorithm, iterating through a list of n unsorted items, has a worst-case, average-case, and best-case run-time of Θ(n2), assuming that comparisons can be done in constant time. It is generally out performed by insertion sort.

Selection sort is not a stable sort.

Heapsort greatly improves the basic algorithm by using a heap data structure to speed up finding and removing the lowest datum.


Implementations of Selection Sort

Implementation in C:

for (i = 0; i < n-1; i++) {
   min = i;
   for (j = i+1; j < n; j++) {
      if (x[min] > x[j]) {
         min = j;
      }
   }
   temp = x[i];
   x[i] = x[min];
   x[min] = temp;
}

Implementation in Basic:

For i = 1 To n - 1
   min = i
   For j = i + 1 To n
      If x(min) > x(j) Then
         min = j
      End If
   Next j
   temp = x(i)
   x(i) = x(min)
   x(min) = temp
Next i

Implementation in Java (iterative):

   public static void selectionSort (int[] numbers)
   {
      int min, temp;

      for (int index = 0; index < numbers.length-1; index++)
      {
         min = index;
         for (int scan = index+1; scan < numbers.length; scan++)
            if (numbers[scan] < numbers[min])
               min = scan;

         // Swap the values
         temp = numbers[min];
         numbers[min] = numbers[index];
         numbers[index] = temp;
      }
   }

Implementation in Java (recursive):

	// Selection sort for an array of ints
        public static int findMin(int[] array, int index)
	{ 
		int min = index - 1;
		if(index < array.length - 1) min = findMin(array, index + 1);
		if(array[index] < array[min]) min = index;
		return min;
	}
	
	public static void selectionSort(int[] array)
	{ 
		for(int left = 0; left < array.length - 1; left++)
		{
			swap(array, left, findMin(array, left));
		}
	}

	public static void swap(int[] array, int index1, int index2)
	{//swap the two values
		int temp = array[index1];
		array[index1] = array[index2];
		array[index2] = temp;
	}

09-23-2007 01:00:40
The contents of this article is licensed from www.wikipedia.org under the GNU Free Documentation License. Click here to see the transparent copy and copyright details
Science kits, science lessons, science toys, maths toys, hobby kits, science games and books - these are some of many products that can help give your kid an edge in their science fair projects, and develop a tremendous interest in the study of science. When shopping for a science kit or other supplies, make sure that you carefully review the features and quality of the products. Compare prices by going to several online stores. Read product reviews online or refer to magazines.

Start by looking for your science kit review or science toy review. Compare prices but remember, Price $ is not everything. Quality does matter.
Science Fair Coach
What do science fair judges look out for?
ScienceHound
Science Fair Projects for students of all ages
All Science Fair Projects.com Site
All Science Fair Projects Homepage
Search | Browse | Links | From-our-Editor | Books | Help | Contact | Privacy | Disclaimer | Copyright Notice