목차
슬로우~슬로우~ 퀵퀵!!
퀵써비스...자료구조에 나오는 알고리즘을 이용한 퀵쏘트 프로그램입니다.
본문내용
#include <stdio.h>
#include <stdlib.h>
typedef int T; /* type of item to be sorted */
typedef int tblIndex; /* type of subscript */
#define compGT(a,b) (a > b)
void insertSort(T *a, tblIndex lb, tblIndex ub) {
T t;
tblIndex i, j;
참고 자료
없음