直接插入排序练习:POJ 2388

那年仲夏 提交于 2020-01-30 14:00:17
关于直接插入排序请参看:http://128kj.iteye.com/blog/1662280

POJ2388题意:
【输入】第一行为n,接下来n行分别为一个数;
【输出】这n个数排序后的中位数
样例:
Sample Input

5
2
4
1
3
5
Sample Output

3

分析:好象用多种排序法都可以AC,前面用了堆排序,这里再用直接插入排序,主要是复习一下代码。比起堆排序,代码短多了。

排一次序后输出中位数,但效率太低了。这里先不管了。

Java代码

  1. import java.util.Scanner;
  2. public class Main {
  3. public static void main(String[] args) {
  4. Scanner in=new Scanner(System.in);
  5. int n=in.nextInt();
  6. int[] array =new int[n];
  7. for(int i=0;i<n;i++)
  8. array[i]=in.nextInt();
  9. sort(array);
  10. System.out.println(array[n / 2 ]);
  11. //for(int el : array) {
  12. // System.out.print(el + " ");
  13. //}
  14. }
  15. static void sort(int[] array) {
  16. int temp;
  17. int i,j;
  18. int length = array.length;
  19. for(i = 1; i < length; i++) {
  20. temp = array[i];
  21. for(j = i-1; j >=0; j--) {
  22. if(temp < array[j]) {
  23. array[j+1] = array[j];
  24. } else {
  25. break;
  26. }
  27. }
  28. array[j+1] = temp;
  29. }
  30. }
  31. }
import java.util.Scanner;
public class Main {   
  
    public static void main(String[] args) {  
     Scanner in=new Scanner(System.in);
     int n=in.nextInt();
     int[] array =new int[n];      
     for(int i=0;i<n;i++)
        array[i]=in.nextInt();
     sort(array);   
     System.out.println(array[n / 2 ]); 


    //for(int el : array) {   
      //  System.out.print(el + " ");   
    //}   
    }   
       
    static void sort(int[] array) {   
    int temp;   
    int i,j;   
    int length = array.length;   
           
    for(i = 1; i < length; i++) {   
        temp = array[i];   
        for(j = i-1; j >=0; j--) {   
          if(temp < array[j]) {   
            array[j+1] = array[j];   
          } else {   
            break;   
          }   
        }   
        array[j+1] = temp;   
    }   
    }   
}  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!