정렬 자바 삽입 실현
package leilei.bit.edu.t2;
public class InsertSort {
public static void insertSort(int[] a) {
int arr_length = a.length;
int j; // , j
int i; // 。
int value; // , j
System.out.print("Before sort, the array is:");
printArr(a);
//
for(j = 1; j < arr_length; j++) {
value = a[j];
i = j - 1;
// i , i
while(i>0 && a[i]>value) {
a[i+1] = a[i];
i--;
}
// , j 。
a[i+1] = value;
}
System.out.print("After sort , the array is:");
printArr(a);
}
public static void printArr(int[] a) {
for(int i=0; i<a.length; i++) {
System.out.print(a[i] + " ");
}
System.out.println();
}
public static void main(String[] args) {
int[] a = {1,5,4,3,8,9,7,6,2};
insertSort(a);
}
}
실행 결과:
Before sort, the array is:1 5 4 3 8 9 7 6 2
After sort , the array is:1 2 3 4 5 6 7 8 9
구체 적 인 사고방식 은 사실 코드 안의 주석 이 이미 명확 하 게 해석 되 었 다.시간 나 면 다시 그림 을 보충 합 시다.헤헤
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.