码迷,mamicode.com
首页 > 编程语言 > 详细

java常用算法

时间:2018-01-17 00:38:00      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:sel   image   常用   else   data   图形   问题   ati   就是   

转:http://blog.csdn.net/spy19881201/article/details/5867721

  https://www.cnblogs.com/hexiaochun/archive/2012/09/03/2668324.html

 

一、冒泡排序

[java] view plain copy
 
  1. package sort.bubble;  
  2. import java.util.Random;  
  3. /** 
  4.  * 依次比较相邻的两个数,将小数放在前面,大数放在后面 
  5.  * 冒泡排序,具有稳定性 
  6.  * 时间复杂度为O(n^2) 
  7.  * 不及堆排序,快速排序O(nlogn,底数为2) 
  8.  * @author liangge 
  9.  * 
  10.  */  
  11. public class Main {  
  12.     public static void main(String[] args) {  
  13.         Random ran = new Random();  
  14.         int[] sort = new int[10];  
  15.         for(int i = 0 ; i < 10 ; i++){  
  16.             sort[i] = ran.nextInt(50);  
  17.         }  
  18.         System.out.print("排序前的数组为");  
  19.         for(int i : sort){  
  20.             System.out.print(i+" ");  
  21.         }  
  22.         buddleSort(sort);  
  23.         System.out.println();  
  24.         System.out.print("排序后的数组为");  
  25.         for(int i : sort){  
  26.             System.out.print(i+" ");  
  27.         }  
  28.     }  
  29.       
  30.     /** 
  31.      * 冒泡排序 
  32.      * @param sort 
  33.      */  
  34.     private static void buddleSort(int[] sort){  
  35.         for(int i=1;i<sort.length;i++){  
  36.             for(int j=0;j<sort.length-i;j++){  
  37.                 if(sort[j]>sort[j+1]){  
  38.                     int temp = sort[j+1];  
  39.                     sort[j+1] = sort[j];  
  40.                     sort[j] = temp;  
  41.                 }  
  42.             }  
  43.         }  
  44.     }  
  45. }  

 

 

 

 

 

二、选择排序

 

 

[java] view plain copy
 
  1. package sort.select;  
  2. import java.util.Random;  
  3. /** 
  4.  * 选择排序 
  5.  * 每一趟从待排序的数据元素中选出最小(或最大)的一个元素, 
  6.  * 顺序放在已排好序的数列的最后,直到全部待排序的数据元素排完。  
  7.  * 选择排序是不稳定的排序方法。 
  8.  * @author liangge 
  9.  *  
  10.  */  
  11. public class Main {  
  12.     public static void main(String[] args) {  
  13.         Random ran = new Random();  
  14.         int[] sort = new int[10];  
  15.         for (int i = 0; i < 10; i++) {  
  16.             sort[i] = ran.nextInt(50);  
  17.         }  
  18.         System.out.print("排序前的数组为");  
  19.         for (int i : sort) {  
  20.             System.out.print(i + " ");  
  21.         }  
  22.         selectSort(sort);  
  23.         System.out.println();  
  24.         System.out.print("排序后的数组为");  
  25.         for (int i : sort) {  
  26.             System.out.print(i + " ");  
  27.         }  
  28.     }  
  29.     /** 
  30.      * 选择排序 
  31.      * @param sort 
  32.      */  
  33.     private static void selectSort(int[] sort){  
  34.         for(int i =0;i<sort.length-1;i++){  
  35.             for(int j = i+1;j<sort.length;j++){  
  36.                 if(sort[j]<sort[i]){  
  37.                     int temp = sort[j];  
  38.                     sort[j] = sort[i];  
  39.                     sort[i] = temp;  
  40.                 }  
  41.             }  
  42.         }  
  43.     }  
  44. }  

 

三、快速排序

 

 1 package com.quick;
 2 
 3 public class quick {
 4     public void quick_sort(int[] arrays, int lenght) {
 5         if (null == arrays || lenght < 1) {
 6             System.out.println("input error!");
 7             return;
 8         }
 9         _quick_sort(arrays, 0, lenght - 1);
10     }
11 
12     public void _quick_sort(int[] arrays, int start, int end) {
13         if(start>=end){
14             return;
15         }
16         
17         int i = start;
18         int j = end;
19         int value = arrays[i];
20         boolean flag = true;
21         while (i != j) {
22             if (flag) {
23                 if (value > arrays[j]) {
24                     swap(arrays, i, j);
25                     flag=false;
26 
27                 } else {
28                     j--;
29                 }
30             }else{
31                 if(value<arrays[i]){
32                     swap(arrays, i, j);
33                     flag=true;
34                 }else{
35                     i++;
36                 }
37             }
38         }
39         snp(arrays);
40         _quick_sort(arrays, start, j-1);
41         _quick_sort(arrays, i+1, end);
42         
43     }
44 
45     public void snp(int[] arrays) {
46         for (int i = 0; i < arrays.length; i++) {
47             System.out.print(arrays[i] + " ");
48         }
49         System.out.println();
50     }
51 
52     private void swap(int[] arrays, int i, int j) {
53         int temp;
54         temp = arrays[i];
55         arrays[i] = arrays[j];
56         arrays[j] = temp;
57     }
58 
59     public static void main(String args[]) {
60         quick q = new quick();
61         int[] a = { 49, 38, 65,12,45,5 };
62         q.quick_sort(a,6);
63     } 
64 
65 }

快速排序讲解

所谓的快速排序的思想就是,首先把数组的第一个数拿出来做为一个key,在前后分别设置一个i,j做为标识,然后拿这个key对这个数组从后面往前遍历,及j--,直到找到第一个小于这个key的那个数,然后交换这两个值,交换完成后,我们拿着这个key要从i往后遍历了,及i++;一直循环到i=j结束,当这里结束后,我们会发现大于这个key的值都会跑到这个key的后面,不是的话就可能你写错了,小于这个key的就会跑到这个值的前面;然后我们对这个分段的数组再时行递归调用就可以完成整个数组的排序。

用图形法表示由下:

技术分享图片

这样就以key分为了两个段,我们把这两个段再递进去就可以解决问题了

 

java常用算法

标签:sel   image   常用   else   data   图形   问题   ati   就是   

原文地址:https://www.cnblogs.com/CrystalXIN/p/8298037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!