Java中数组高级(冒泡排序和选择排序)、Arrays类、基本类

2016-10-26  本文已影响46人  清风沐沐

数组高级(排序)

//数组排序之冒泡排序
public class ArrayDemo { 
        public static void main(String[] args) { 
        // 定义一个数组 
       int[] arr = { 24, 69, 80, 57, 13 };
System.out.println("排序前:"); 
printArray(arr); 
      bubbleSort(arr); 
System.out.println("排序后:"); 
printArray(arr); 
// 遍历功能 
public static void printArray(int[] arr) { 
System.out.print("["); 
 for (int x = 0; x < arr.length; x++) { 
          if (x == arr.length - 1) { 
              System.out.print(arr[x]);
         } else { 
             System.out.print(arr[x] + ", "); 
         }
     }
     System.out.println("]"); 
  } 

   //冒泡排序代码 
   public static void bubbleSort(int[] arr){ 
       for (int x = 0; x < arr.length - 1; x++) { 
             for (int y = 0; y < arr.length - 1 - x; y++) { 
                 if (arr[y] > arr[y + 1]) { 
                       int temp = arr[y]; arr[y] = arr[y + 1]; arr[y + 1] = temp;
                 }
            }
        }
   }

   //选择排序 
   public static void selectSort(int[] arr){  
       for(int x=0; x<arr.length-1; x++){ 
             for(int y=x+1; y<arr.length; y++){ 
                    if(arr[y] <arr[x]){     
                          int temp = arr[x]; arr[x] = arr[y]; arr[y] = temp; 
                   }
             }
         }
    }
}

Arrays类概述及其常用方法

public class ArraysDemo { public static void main(String[] args) { 
// 定义一个数组
 int[] arr = { 24, 69, 80, 57, 13 };
 // public static String toString(int[] a) 把数组转成字符串 
System.out.println("排序前:" + Arrays.toString(arr)); 
// public static void sort(int[] a) 对数组进行排序 
Arrays.sort(arr);
//底层是快速排序,了解就可以了
 System.out.println("排序后:" + Arrays.toString(arr)); 
// [13, 24, 57, 69, 80] 
// public static int binarySearch(int[] a,int key) 二分查找 System.out.println("binarySearch:" + Arrays.binarySearch(arr, 57)); System.out.println("binarySearch:" + Arrays.binarySearch(arr, 577)); }}

Java基本类型包装类概述

Integer类概述及其构造方法

int类型和String类型的相互转换

Integer类成员方法

常用的基本进制转换

十进制到其他进制

其他进制到十进制

- public static int parseInt(String s,int radix) 
上一篇 下一篇

猜你喜欢

热点阅读