Program

pchero on November 4th, 2009

     캠으로 동작을 감지하여 실시간으로 경고 발생 및 경고 메일 전송을 하는 보안 프로그램   XRohsOEuDe.tgz      

Continue reading about SOFT_CCTV-0.1.1

pchero on June 12th, 2008

 SimTL2 0.1.2 버전이다.  TCP 포트번호에 따라 사용프로그램을 표시하도록 했고, 클래스에 따른 파일 구성을 변경하여 직관적으로 알 수 있게 하였다.  README 파일을 첨부하였다.  http://sourceforge.net/projects/simtl2/

Continue reading about SimTL2 0.1.2

pchero on May 30th, 2008

 SimTL 0.2.0  프로젝트 관련 파일 링크  http://pchero21.com/projects/SimTL/index.html XfwTVbyQis.dvi

Continue reading about SimTL2

pchero on January 2nd, 2008

 숫자를 입력하면 N * N 크기의 행렬이 만들어지고, 숫자가 달팽이 등껍질처럼 입력되는 재미있는 알고리즘. Snail_Algotithms (Language : c)    1.       /***************************************************************************    2.       *            Snail_Algorithms.c    3.       *    4.       *  Wed Jan  2 16:45:57 2008    5. […]

Continue reading about 달팽이 알고리즘

pchero on November 28th, 2007

#include <stdio.h>#include <stdlib.h>#include <math.h> void queens(int i);bool promising(int i); int n;int *col; int main(){  printf(“Insert Number…n”); printf(“Insert : “); scanf(“%d”, &n);  col = (int *)malloc(n * sizeof(int)); queens(0);  return 0;} void queens(int i){ int j, tmp;  if(promising(i))  if(i == N) {   for(tmp = 1; tmp <= N; tmp++)    printf(“%d “, col[tmp]);   printf(“n”);  }  else   for(j = 1; j […]

Continue reading about N-여왕말 문제(되추적 알고리즘) 소스 코드