거품 정렬 알고리즘 (C & 자바 구현)
#include <stdio.h>
#define SWAP( a, b ) { t = a; a = b; b = t; }
#define LESS( a, b ) a < b
void disp_array( int a[], int n );
void bubble_sort( int a[], int n )
{
int i, j, t;
int flag = 1; // 本趟比较中是否发生了交换?
for( i = 0; i < n - 1 && flag == 1; ++i )
{
flag = 0;
for( j = 0; j < n - i - 1; ++j )
{
if( LESS( a[j + 1], a[j] ) )
{
flag = 1;
SWAP( a[j + 1], a[j] );
}
}
printf( "Round %2d: ", i + 1 );
disp_array( a, n );
}
}
void disp_array( int a[], int n )
{
int i;
for( i = 0; i < n; ++i )
printf( "%d ", a[i] );
printf( "
" );
}
int main()
{
int i, n = 8;
int a[] = { 49, 38, 65, 97, 76, 13, 27, 49 };
printf( "Before sorting: " );
disp_array( a, n );
bubble_sort( a, n );
printf( "After sorting: " );
disp_array( a, n );
return 0;
}
자바 언어 버 전
public class TestBubbleSort {
public static void dispArray( int a[] ) {
for( int i = 0; i < a.length; ++i )
System.out.print( a[i] + " " );
System.out.println();
}
public static void swap( int a[], int i, int j ) {
int t = a[i]; a[i] = a[j]; a[j] = t;
}
public static boolean less( int a[], int i, int j ) {
return a[i] < a[j];
}
public static void bubbleSort( int [] a ) {
boolean change = true;
for( int i = 0; change && i < a.length - 1; ++i ) {
change = false;
for( int j = 0; j < a.length - i - 1; ++j ) {
if( less( a, j + 1, j ) ) {
change = true;
swap( a, j + 1, j );
}
}
System.out.print( "Round " + ( i + 1 ) + ": " );
dispArray( a );
}
}
public static void main( String[] args ) {
int a[] = { 100, 49, 38, 65, 97, 76, 13, 27, 49 };
System.out.print( "Before sorting: " );
dispArray( a );
bubbleSort( a );
System.out.print( "After sorting: " );
dispArray( a );
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.