Java冒泡排序算法(一)

2014-11-24 07:37:21 · 作者: · 浏览: 0

序:一个爱上Java最初的想法一直没有磨灭:”分享我的学习成果,不管后期技术有多深,打好基础很重要“。
声明:所有源码经由本人原创,上道者皆似曾相识,另未经过权威机构或人士审核和批准,勿做商业用途,仅供学习分享,若要转载,请注明出处。

工具类Swapper,后期算法会使用这个工具类:
package com.meritit.sortord.util;

/**
 * One util to swap tow element of Array
 * 
 * @author ysjian
 * @version 1.0
 * @email ysjian_pingcx@126.com
 * @QQ 646633781
 * @telephone 18192235667
 * @csdnBlog http://blog.csdn.net/ysjian_pingcx
 * @createTime 2013-12-20
 * @copyRight Merit
 */
public class Swapper {

	private Swapper() {

	}

	/**
	 * Swap tow elements of the array
	 * 
	 * @param oneIndex
	 *            one index
	 * @param anotherIndex
	 *            another index
	 * @param array
	 *            the array to be swapped
	 * @exception NullPointerException
	 *                if the array is null
	 */
	public static 
  
   > void swap(int oneIndex,
			int anotherIndex, T[] array) {
		if (array == null) {
			throw new NullPointerException(null value input);
		}
		checkIndexs(oneIndex, anotherIndex, array.length);
		T temp = array[oneIndex];
		array[oneIndex] = array[anotherIndex];
		array[anotherIndex] = temp;
	}

	/**
	 * Swap tow elements of the array
	 * 
	 * @param oneIndex
	 *            one index
	 * @param anotherIndex
	 *            another index
	 * @param array
	 *            the array to be swapped
	 * @exception NullPointerException
	 *                if the array is null
	 */
	public static void swap(int oneIndex, int anotherIndex, int[] array) {
		if (array == null) {
			throw new NullPointerException(null value input);
		}
		checkIndexs(oneIndex, anotherIndex, array.length);
		int temp = array[oneIndex];
		array[oneIndex] = array[anotherIndex];
		array[anotherIndex] = temp;
	}

	/**
	 * Check the index whether it is in the arrange
	 * 
	 * @param oneIndex
	 *            one index
	 * @param anotherIndex
	 *            another index
	 * @param arrayLength
	 *            the length of the Array
	 * @exception IllegalArgumentException
	 *                if the index is out of the range
	 */
	private static void checkIndexs(int oneIndex, int anotherIndex,
			int arrayLength) {
		if (oneIndex < 0 || anotherIndex < 0 || oneIndex >= arrayLength
				|| anotherIndex >= arrayLength) {
			throw new IllegalArgumentException(
					illegalArguments for tow indexs [ + oneIndex + ,
							+ oneIndex + ]);
		}
	}
}

  
冒泡排序算法BubbleSortord:
package com.meritit.sortord.bubble;

import com.meritit.sortord.util.Swapper;

/**
 * Bubble sort order, time complexity is O(n2)
 * 
 * @author ysjian
 * @version 1.0
 * @email ysjian_pingcx@126.com
 * @QQ 646633781
 * @telephone 18192235667
 * @csdnBlog http://blog.csdn.net/ysjian_pingcx
 * @createTime 2013-12-20
 * @copyRight Merit
 * @since 1.5
 */
public class BubbleSortord {

	private static final BubbleSortord INSTANCE = new BubbleSortord();

	private BubbleSortord() {
	}

	/**
	 * Get the instance of ComparisonSortord, only just one instance
	 * 
	 * @return the only instance of BubbleSortord
	 */
	public static BubbleSortord getInstance() {
		return INSTANCE;
	}

	/**
	 * Sort the array of int with bubble sort order
	 * 
	 * @param array
	 *            the array of int
	 */
	public void doSort(int... array) {
		int length = array.length;

		// a flag judge whether the array is in order
		boolean flag = true;
		for (int i = 0; i < length - 1 && flag; i++) {
			flag = false;// set false
			for (int j = 0; j < length - i - 1; j++) {
				if (array[j] > array[j + 1]) {

					// compare two neighbor elements
					Swapper.swap(j, j + 1, array);
					/*
					 * if the line is not reach, indicate that the array is in
					 * order, then break the circulation
					 */
					flag = true;
				}
			}
		}
	}

	/**
	 * Sort the array of generic T with bubble sort order
	 * 
	 * @param array