pchero on October 11th, 2007

데이터 통신-02 Xe1acQSRzz.pdf

Continue reading about 데이터 통신-02

pchero on October 11th, 2007

데이터 통신-01 XOn8Rblncd.pdf

Continue reading about 데이터 통신-01

pchero on October 11th, 2007

mergeSort 구현 과제… XQYRPNHlOS.cXOvBrWVbZG.cXYQKpzkfAI.pdf

Continue reading about mergeSort 구현 과제 보고서

pchero on October 11th, 2007

  이진검색 의사코드 구현. XOBrjABdJO.pdfXLBBGJzU05.cXJhhm63h81.c

Continue reading about binary-search 구현 과제 보고서

pchero on October 10th, 2007

실행환경 : Visual C++ 6.0 #include <stdio.h> void quick_partition(int low, int high, int *pivotpoint);void quick_sort(int low, int high);void quick_swap(int *a, int *b); int S[10] = {10, 12, 14, 2, 6, 5, 9, 3, 7, 8}; // 정렬을 원하는 전역배열. int main(){ int i;  printf(“Before : “); for(i = 0; i < 10; i++)  printf(“%d “, S[i]); printf(“n”);  quick_sort(0, […]

Continue reading about Quicksort(빠른정렬) 알고리즘