`

又见排序 ---顺便八一八对现在面试内容的感想

阅读更多

 

在准备一个面试,而对排序算法的再熟悉又是面试准备的一小部分。 

 

这里,先把早先找到的个排序例子放这。 抱歉,忘了这些代码是从哪抄来的了,就默默地感谢下吧。

 

package sort;

import java.util.Random;

/**
 * 排序测试类
 * 
 * 排序算法的分类如下: 1.插入排序(直接插入排序、折半插入排序、希尔排序); 2.交换排序(冒泡泡排序、快速排序);
 * 3.选择排序(直接选择排序、堆排序); 4.归并排序; 5.基数排序。
 * 
 * 关于排序方法的选择: (1)若n较小(如n≤50),可采用直接插入或直接选择排序。
 * 当记录规模较小时,直接插入排序较好;否则因为直接选择移动的记录数少于直接插人,应选直接选择排序为宜。
 * (2)若文件初始状态基本有序(指正序),则应选用直接插人、冒泡或随机的快速排序为宜;
 * (3)若n较大,则应采用时间复杂度为O(nlgn)的排序方法:快速排序、堆排序或归并排序。
 * 
 */
/**
 * @description JAVA排序汇总
 */
public class SortTest {

	// //////==============================产生随机数==============================///////////////////
	/**
	 * @description 生成随机数
	 * @date Nov 19, 2009
	 * @author HDS
	 * @return int[]
	 */
	public static  int[] createArray() {
		Random random = new Random();
		int[] array = new int[10];
		for (int i = 0; i < 10; i++) {
			array[i] = random.nextInt(100) - random.nextInt(100);// 生成两个随机数相减,保证生成的数中有负数
		}
		System.out.println("==========原始序列==========");
		printArray(array);
		return array;
	}

	/**
	 * @description 打印出随机数
	 * @date Nov 19, 2009
	 * @author HDS
	 * @param data
	 */
	public static void printArray(int[] data) {
		for (int i : data) {
			System.out.print(i + " ");
		}
		System.out.println();
	}

	/**
	 * @description 交换相邻两个数
	 * @date Nov 19, 2009
	 * @author HDS
	 * @param data
	 * @param x
	 * @param y
	 */
	public static void swap(int[] data, int x, int y) {
		int temp = data[x];
		data[x] = data[y];
		data[y] = temp;
	}

	/**
	 * 冒泡排序----交换排序的一种
	 * 方法:相邻两元素进行比较,如有需要则进行交换,每完成一次循环就将最大元素排在最后(如从小到大排序),下一次循环是将其他的数进行类似操作。
	 * 性能:比较次数O(n^2),n^2/2;交换次数O(n^2),n^2/4
	 * 
	 * @param data
	 *            要排序的数组
	 * @param sortType
	 *            排序类型
	 * @return
	 */
	public void bubbleSort(int[] data, String sortType) {
		if (sortType.equals("asc")) { // 正排序,从小排到大
			// 比较的轮数
			for (int i = 1; i < data.length; i++) { // 数组有多长,轮数就有多长
				// 将相邻两个数进行比较,较大的数往后冒泡
				for (int j = 0; j < data.length - i; j++) {// 每一轮下来会将比较的次数减少
					if (data[j] > data[j + 1]) {
						// 交换相邻两个数
						swap(data, j, j + 1);
					}
				}
			}
		} else if (sortType.equals("desc")) { // 倒排序,从大排到小
			// 比较的轮数
			for (int i = 1; i < data.length; i++) {
				// 将相邻两个数进行比较,较大的数往后冒泡
				for (int j = 0; j < data.length - i; j++) {
					if (data[j] < data[j + 1]) {
						// 交换相邻两个数
						swap(data, j, j + 1);
					}
				}
			}
		} else {
			System.out.println("您输入的排序类型错误!");
		}
		printArray(data);// 输出冒泡排序后的数组值
	}

	/**
	 * 直接选择排序法----选择排序的一种 方法:每一趟从待排序的数据元素中选出最小(或最大)的一个元素,
	 * 顺序放在已排好序的数列的最后,直到全部待排序的数据元素排完。 性能:比较次数O(n^2),n^2/2 交换次数O(n),n
	 * 交换次数比冒泡排序少多了,由于交换所需CPU时间比比较所需的CUP时间多,所以选择排序比冒泡排序快。
	 * 但是N比较大时,比较所需的CPU时间占主要地位,所以这时的性能和冒泡排序差不太多,但毫无疑问肯定要快些。
	 * 
	 * @param data
	 *            要排序的数组
	 * @param sortType
	 *            排序类型
	 * @return
	 */
	public void selectSort(int[] data, String sortType) {
		if (sortType.endsWith("asc")) {// 正排序,从小排到大
			int index;
			for (int i = 1; i < data.length; i++) {
				index = 0;
				for (int j = 1; j <= data.length - i; j++) {
					if (data[j] > data[index]) {
						index = j;
					}
				}
				// 交换在位置data.length-i和index(最大值)两个数
				swap(data, data.length - i, index);
			}
		} else if (sortType.equals("desc")) { // 倒排序,从大排到小
			int index;
			for (int i = 1; i < data.length; i++) {
				index = 0;
				for (int j = 1; j <= data.length - i; j++) {
					if (data[j] < data[index]) {
						index = j;
					}
				}
				// 交换在位置data.length-i和index(最大值)两个数
				swap(data, data.length - i, index);
			}
		} else {
			System.out.println("您输入的排序类型错误!");
		}
		printArray(data);// 输出直接选择排序后的数组值
	}

	/**
	 * 插入排序 方法:将一个记录插入到已排好序的有序表(有可能是空表)中,从而得到一个新的记录数增1的有序表。 性能:比较次数O(n^2),n^2/4
	 * 复制次数O(n),n^2/4 比较次数是前两者的一般,而复制所需的CPU时间较交换少,所以性能上比冒泡排序提高一倍多,而比选择排序也要快。
	 * 
	 * @param data
	 *            要排序的数组
	 * @param sortType
	 *            排序类型
	 */
	public void insertSort(int[] data, String sortType) {
		if (sortType.equals("asc")) { // 正排序,从小排到大
			// 比较的轮数
			for (int i = 1; i < data.length; i++) {
				// 保证前i+1个数排好序
				for (int j = 0; j < i; j++) {
					if (data[j] > data[i]) {
						// 交换在位置j和i两个数
						swap(data, i, j);
					}
				}
			}
		} else if (sortType.equals("desc")) { // 倒排序,从大排到小
			// 比较的轮数
			for (int i = 1; i < data.length; i++) {
				// 保证前i+1个数排好序
				for (int j = 0; j < i; j++) {
					if (data[j] < data[i]) {
						// 交换在位置j和i两个数
						swap(data, i, j);
					}
				}
			}
		} else {
			System.out.println("您输入的排序类型错误!");
		}
		printArray(data);// 输出插入排序后的数组值
	}

	/**
	 * 反转数组的方法
	 * 
	 * @param data
	 *            源数组
	 */
	public void reverse(int[] data) {
		int length = data.length;
		int temp = 0;// 临时变量
		for (int i = 0; i < length / 2; i++) {
			temp = data[i];
			data[i] = data[length - 1 - i];
			data[length - 1 - i] = temp;
		}
		printArray(data);// 输出到转后数组的值
	}

	/**
	 * 快速排序 快速排序使用分治法(Divide and conquer)策略来把一个序列(list)分为两个子序列(sub-lists)。 步骤为:
	 * 1. 从数列中挑出一个元素,称为 "基准"(pivot), 2.
	 * 重新排序数列,所有元素比基准值小的摆放在基准前面,所有元素比基准值大的摆在基准的后面(相同的数可以到任一边)。在这个分割之后,该基准是它的最后位置。这个称为分割(partition)操作。
	 * 3. 递归地(recursive)把小于基准值元素的子数列和大于基准值元素的子数列排序。
	 * 递回的最底部情形,是数列的大小是零或一,也就是永远都已经被排序好了。虽然一直递回下去,但是这个算法总会结束,因为在每次的迭代(iteration)中,它至少会把一个元素摆到它最后的位置去。
	 * 
	 * @param data
	 *            待排序的数组
	 * @param low
	 * @param high
	 * @see SortTest#qsort(int[], int, int)
	 * @see SortTest#qsort_desc(int[], int, int)
	 */
	public void quickSort(int[] data, String sortType) {
		if (sortType.equals("asc")) { // 正排序,从小排到大
			qsort_asc(data, 0, data.length - 1);
		} else if (sortType.equals("desc")) { // 倒排序,从大排到小
			qsort_desc(data, 0, data.length - 1);
		} else {
			System.out.println("您输入的排序类型错误!");
		}
	}

	/**
	 * 快速排序的具体实现,排正序
	 * 
	 * @param data
	 * @param low
	 * @param high
	 */
	private void qsort_asc(int data[], int low, int high) {
		int i, j, x;
		if (low < high) { // 这个条件用来结束递归
			i = low;
			j = high;
			x = data[i];
			while (i < j) {
				while (i < j && data[j] > x) {
					j--; // 从右向左找第一个小于x的数
				}
				if (i < j) {
					data[i] = data[j];
					i++;
				}
				while (i < j && data[i] < x) {
					i++; // 从左向右找第一个大于x的数
				}
				if (i < j) {
					data[j] = data[i];
					j--;
				}
			}
			data[i] = x;
			qsort_asc(data, low, i - 1);
			qsort_asc(data, i + 1, high);
		}
	}

	/**
	 * 快速排序的具体实现,排倒序
	 * 
	 * @param data
	 * @param low
	 * @param high
	 */
	private void qsort_desc(int data[], int low, int high) {
		int i, j, x;
		if (low < high) { // 这个条件用来结束递归
			i = low;
			j = high;
			x = data[i];
			while (i < j) {
				while (i < j && data[j] < x) {
					j--; // 从右向左找第一个小于x的数
				}
				if (i < j) {
					data[i] = data[j];
					i++;
				}
				while (i < j && data[i] > x) {
					i++; // 从左向右找第一个大于x的数
				}
				if (i < j) {
					data[j] = data[i];
					j--;
				}
			}
			data[i] = x;
			qsort_desc(data, low, i - 1);
			qsort_desc(data, i + 1, high);
		}
	}

	/**
	 * 二分查找特定整数在整型数组中的位置(递归) 查找线性表必须是有序列表
	 * 
	 * @paramdataset
	 * @paramdata
	 * @parambeginIndex
	 * @paramendIndex
	 * @returnindex
	 */
	public int binarySearch(int[] dataset, int data, int beginIndex,
			int endIndex) {
		int midIndex = (beginIndex + endIndex) >>> 1; // 相当于mid = (low + high)
														// / 2,但是效率会高些
		if (data < dataset[beginIndex] || data > dataset[endIndex]
				|| beginIndex > endIndex)
			return -1;
		if (data < dataset[midIndex]) {
			return binarySearch(dataset, data, beginIndex, midIndex - 1);
		} else if (data > dataset[midIndex]) {
			return binarySearch(dataset, data, midIndex + 1, endIndex);
		} else {
			return midIndex;
		}
	}

	/**
	 * 二分查找特定整数在整型数组中的位置(非递归) 查找线性表必须是有序列表
	 * 
	 * @paramdataset
	 * @paramdata
	 * @returnindex
	 */
	public int binarySearch(int[] dataset, int data) {
		int beginIndex = 0;
		int endIndex = dataset.length - 1;
		int midIndex = -1;
		if (data < dataset[beginIndex] || data > dataset[endIndex]
				|| beginIndex > endIndex)
			return -1;
		while (beginIndex <= endIndex) {
			midIndex = (beginIndex + endIndex) >>> 1; // 相当于midIndex =
														// (beginIndex +
														// endIndex) / 2,但是效率会高些
			if (data < dataset[midIndex]) {
				endIndex = midIndex - 1;
			} else if (data > dataset[midIndex]) {
				beginIndex = midIndex + 1;
			} else {
				return midIndex;
			}
		}
		return -1;
	}

	// /////////////////////===================================测试====================//////////////////
	public static void main(String[] args) {
		SortTest ST = new SortTest();
		int[] array = ST.createArray();
		System.out.println("==========冒泡排序后(正序)==========");
		ST.bubbleSort(array, "asc");
		System.out.println("==========冒泡排序后(倒序)==========");
		ST.bubbleSort(array, "desc");

		array = ST.createArray();
		System.out.println("==========选择排序后(正序)==========");
		ST.selectSort(array, "asc");
		System.out.println("==========选择排序后(倒序)==========");
		ST.selectSort(array, "desc");
		
		array = ST.createArray();
        System.out.println("==========插入排序后(正序)==========");
        ST.insertSort(array, "asc");
        System.out.println("==========插入排序后(倒序)==========");
        ST.insertSort(array, "desc");

        array = ST.createArray();
        System.out.println("==========快速排序后(正序)==========");
        ST.quickSort(array, "asc");
        ST.printArray(array);
        System.out.println("==========快速排序后(倒序)==========");
        ST.quickSort(array, "desc");
        ST.printArray(array);
        System.out.println("==========数组二分查找==========");
        System.out.println("您要找的数在第" + ST.binarySearch(array, 74)+ "个位子。(下标从0计算)");

	}

} 

  ================

 

上面是比较全的,下面是我重写时的记录:

 

package sort;

import static sort.SortTest.*;

public class RmnTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		int[] array = SortTest.createArray();
		
		bubbleSort(array);
		
		printArray(array);
		
		array = SortTest.createArray();
		
		selectSort(array);
		printArray(array);
	}

	/*
	 * 这样的只记下标,更能体现出选择排序的概念
	 */
	private static void selectSort(int[] array) {
		for(int i = 0;i<array.length;i++) {
			int tempIndex = i;
			for(int j = 0;j<array.length;j++) {
				if(array[j] < array[tempIndex]) {
					tempIndex = j;
				}
			}
			if(tempIndex != i)  swap(array,tempIndex,i);
		}
	}

	/*
	 * 像下面这样地比较j和j+1的值更能体现出冒泡的意义 
	 */
	private static void bubbleSort(int[] array) {
		for(int i = 1 ;i< array.length;i++) {
			for(int j  = 0;j<array.length-1;j++) {
				if(array[j] < array[j+1]) {
					swap(array,j,j+1);
				}
			}
		}
	}
	
	

//	private static void selectSort(int[] array) {
//		for(int outer = 0;outer < array.length - 1;outer ++) {
//			int temp= array[outer];
//			for(int in = outer; in < array.length; in ++) {
//				if(array[in] < temp ) {
//					temp = array[in];
//					swap(array,outer,in);
//				}
//			}
//		}
//	}
//
//	private static void bubbleSort(int[] array) {
//		for(int i = 0;i<array.length  -1 ;i++) {
//			for(int j = i + 1;j<array.length;j++) {
//				if(array[i] < array[j]) {
//					swap(array,i,j);
//				}
//			}
//		}
//	}

}
 

==============================================

咱们面试的时候能不能不问这些很低级的东西啊? 是否从面试内容上也能看出一家公司的技术底蕴呢?

 

 

分享到:
评论
6 楼 ericslegend 2011-04-06  
有些人就喜欢好高骛远或者自命不凡地站在高处看别人,口口声声说别人怎么连排序都不会,真让他一行一行地去码,十有八九码出来都有问题!
像什么排序的几种算法思想很多人都懂,就是写的时候不严谨,而且就算一种算法实现起来也有各种语言各种风格,真受不了那些说别人什么新手啊,菜鸟啊之类的人,闲的蛋疼。
5 楼 spring-china 2011-03-15  
呵呵,排序的算法还是比较基本的,过段时间找工作兴许能用上,得临时抱抱佛脚啦
4 楼 hyj1254 2011-02-21  
EldonReturn 写道
连排序都写不好
怎么能指望写个健壮点的程序?

意思是算法是编程能力的首要部分?
3 楼 夜之son 2011-01-27  
  while (i < j) { 
                while (i < j && data[j] > x) { 
                    j--; // 从右向左找第一个小于x的数 
                } 
                if (i < j) { 
                    data[i] = data[j]; 
                    i++; 
                } 
                while (i < j && data[i] < x) { 
                    i++; // 从左向右找第一个大于x的数 
                } 
                if (i < j) { 
                    data[j] = data[i]; 
                    j--; 
                } 
            } 

我觉得这里怎么看起来有些别扭,先申明哦,我水平不高。
2 楼 satanultra 2010-11-19  
EldonReturn 写道
连排序都写不好
怎么能指望写个健壮点的程序?

支持你,但是现今,排序都写不好的程序员比比皆是.
1 楼 EldonReturn 2010-11-19  
连排序都写不好
怎么能指望写个健壮点的程序?

相关推荐

    一个程序员的面试感想

    标题中的“一个程序员的面试感想”意味着这篇文章将聚焦于一个程序员在面试过程中的体验、反思和学习。作为程序员,面试不仅仅是技术技能的展示,也是沟通能力、问题解决能力和个人职业素养的综合体现。这样的文章...

    中国农业银行北分面试感想.doc

    - **个人提问**:面试官会随机挑选面试者进行提问,内容可能涉及对农行的了解、个人背景等。 4. **面试技巧与建议**: - **保持冷静**:面试过程中保持淡定,控制语速,避免因紧张而语速过快。 - **积极参与**:...

    阿里面试经历感想回顾总结

    3. **HashMap**:HashMap 是一个无序的键值对存储结构,通过哈希函数实现快速查找。它提供了 O(1) 的平均时间复杂度进行插入、删除和查找操作,但在最坏的情况下(哈希冲突严重),时间复杂度可能上升到 O(n)。 4. ...

    对公司的感想及工作建议-对公司的感想和建议.doc

    对公司的感想及工作建议-对公司的感想和建议

    光大银行 福建分行面试感想.doc

    5. **专业技能**:对于金融岗位,如柜员,面试官可能询问能否长期从事这一岗位,以及对可能的职业发展路径的看法。此外,还会询问薪资期望和是否申请了其他金融机构。 6. **特定群体问题**:对于留学生,面试官可能...

    做项目后的感想----读后感

    在IT项目开发中,经历一个项目从开始到完成往往能带来深刻的感悟。在这个"信息发布系统项目"中,我们可以总结出一些关键的知识点和实践经验。 首先,需求分析是项目的基础,确保需求的准确性至关重要。需求不明确...

    程序员面试.pdf

    本文档是一本关于程序员面试的详细指南,涵盖了从面试准备到面试技巧,从简历制作到面试后注意事项的各个方面。在这里,我们将详细说明各章节的知识点。 一、如何准备面试:强调了面试前的准备工作,包括了解面试...

    博士面试经历及感想.pdf,这是一份不错的文件

    博士面试是进入学术界的关键一步,它不仅是对个人学术能力的评估,也是对个人综合素质的考量。以下根据标题、描述和部分内容,详细解读博士面试中的关键知识点: 1. **广泛的知识面**:博士面试通常会涉及到广泛的...

    本科教学合格评估感想---文艺部.doc

    文档标题和描述并未直接涉及IT行业的专业知识,而是关于本科教学合格评估的一个感想,主要讨论的是高等教育质量管理和改进的过程。不过,我们可以从中提取出一些与教育管理相关的知识点,并将其与IT行业的一些实践相...

    招聘面试的感想.doc

    在招聘面试过程中,应聘者的形象和能力展示至关重要。...这些因素都将直接影响招聘者对他们的第一印象,从而影响求职成功的机会。在竞争激烈的就业市场中,注重这些细节往往能帮助应聘者脱颖而出。

    入路感想铁路入职感想.rar

    【标题】:“入路感想铁路入职感想.rar”是一个压缩包文件,主要包含了作者对进入铁路行业后的个人感受和体验。从标题来看,我们可以推测这可能是一份新入职铁路行业的人员所写的个人心得体会,涵盖了他或她在铁路...

    我的博士面试经历及感想.pdf,这是一份不错的文件

    博士面试是申请博士研究生的重要环节,它不仅是对申请人学术能力的评估,同时也是考察个人素养、研究计划和应变能力的过程。以下是对博士面试关键知识点的详细解析: 首先,面试的主题通常围绕申请者的知识广度。...

    空乘人员感想-论文.zip

    在对“空乘人员感想-论文.zip”这个压缩包中的内容进行分析时,我们可以预想到这应该是一份关于空乘人员工作体验、心理状态、职业挑战或行业发展趋势的研究论文。由于具体的内容我们无法直接查看,只能根据标题和...

    C++的学习感想-C/C++语言编程-编程语言

    eating.cpp : Defines the class behaviors for the application eating.cpp : Defines the class behaviors for the application

    中国建设银行信息技术类校招面试经验.pdf

    8. 面试后的感想和建议:提供面试经验的应聘者给出了个人的感受和建议,例如不进行英语面试可能减少了应聘者的压力,但无论如何,应聘者还是应该为可能的英语提问做好准备。同时,该应聘者也提到了自己的面试过程,...

    八八战略感想摘录 浙商感想..doc

    八八战略感想摘录 浙商感想..doc

    新课程改革心得体会感想-资料___.docx

    新课程改革心得体会感想-资料___.docx

    121-加入ERP项目组后的感想.zip

    121-加入ERP项目组后的感想.zip

    新华书店图书仓库管理员感想-与梦想一起飞 .doc

    新华书店图书仓库管理员感想-与梦想一起飞 .doc

    编译实验总结感想-18373441-覃启浩1

    编译实验总结感想 编译实验是计算机科学和技术专业的核心课程,旨在让学生了解编译器的设计和实现。通过这个课程,学生可以学习编译器的基本原理和技术,了解编译过程的各个阶段,包括词法分析、语法分析、错误处理...

Global site tag (gtag.js) - Google Analytics