摘要: 1、轴固定在左边的实现。  2、轴也参与进来排序的实现。  3、轴的选择是快速排序法的效率关键之一,在这边的快速排序法的轴选择方式更加快了快速排序法的效率,它是来自演算法名书 Introduction to Algorithms 之中。  先说明这个快速排序法的概念,它以最右边的值s作比较的标准,将整个数列分为三个部份,一个是小于s的部份,一个是大于s的部份,一个是... 阅读全文
posted @ 2010-05-21 15:07 phpzxh 阅读(408) 评论(0) 推荐(0) 编辑
摘要: package com.student.common;public class Sort { public static void main(String[] args) { int [] number = {41,24,76,11,45,64,21,69,19,36}; //selectSort(number); //bobSort(number); insertSort... 阅读全文
posted @ 2010-05-21 14:55 phpzxh 阅读(309) 评论(0) 推荐(0) 编辑