/*	
	Mr. Bui
	10/2/07
	This program sorts the integer array using the selection sort algorithm
*/

public class SelectionSort
{
	public static void main(String [] args)
	{
		int [] intArray = { 1, 2, 3, 4, 5, 1, 6, 42, 4, 6 ,3, 4, 2, 6, 7, 
			6, 4, 63, 12, 4, 7, 4, 2, 1, 3, 5, 7, 8, 7, 32, 56, 5, 35, 10 }; 
			

		int currentMinIndex = 0;

		for (int front = 0; front < intArray.length; front++)
		{
			//initialize currentMin to the element in the current front

			
			//find the minimum element (use currentMinIndex)



			
			//swap found minimum with the current "front"

		}

		//print out sorted array

	}
}