소팅 프로그램 (버블, 삽입, 선택, 퀵) C로 구현
본 자료는 미만의 자료로 미리보기를 제공하지 않습니다.
닫기
  • 1
해당 자료는 0페이지 까지만 미리보기를 제공합니다.
0페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

소팅 프로그램 (버블, 삽입, 선택, 퀵) C로 구현에 대한 보고서 자료입니다.

본문내용

#include
#include

#define ELEMENT 200

void
bubble_sort(int array[], int),
insertion_sort(int array[], int),
selection_sort(int array[], int),
quick_sort(int array[], int, int, int);
.
.
.
.
.
printf("Select Number of Sorting Method\n");
printf("1. Bubble Sort 2. Selection Sort 3. Insertion Sort 4. Quick Sort\n Press 'q' to end\n");
select = getch();
switch(select)
{
case '1':
bubble_sort(array, num);
break;
case '2':
selection_sort(array, num);
break;
case '3':
insertion_sort(array, num);
break;
case '4':
quick_sort(array, 0, num - 1, num);
break;
}

키워드

버블,   삽입,   선택,   ,   sort,   sorting,   소트,   정렬
  • 가격1,000
  • 페이지수1페이지
  • 등록일2005.10.28
  • 저작시기2005.10
  • 파일형식기타(cpp)
  • 자료번호#317406
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니