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(빠른정렬) 알고리즘

pchero on October 9th, 2007

 체육대회에서 뒷풀이 고기 파티까지…  즐거웠던 그날…ㅋㅋㅋㅋ  그러게 담부턴 사진찍자고 하면 포즈좀 잡아요.ㅎㅎㅎㅎ  p.s. 완소 교수님S

Continue reading about ’07. 9월 학교 체육대회

pchero on October 8th, 2007

 이런….  mergeSort…  쉬울줄 알았는데 의외의 부분에서 시간을 많이 잡아먹었다.  진작에 디버깅을 했다면 알 수 있었을 것을…  디버깅의 중요성…다시한번 더 느껴본다.

Continue reading about mergeSort…..

httpd.conf 파일에서ServerName 부분 편집 ex)ServerName 127.0.1.1

Continue reading about Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName httpd