Infix -> postfix 변환 C source //* #include #include #include #define STACK_SIZE 50 int push(char* stack, int* top, char value); int pop(char* stack, int *top, char *value); int Change_to_post(char* stack, char* str, int *top);//infix -> postfix int Cal_post(char* stack, int *top); main() { char stack[50];//스택 char str[50];//입력 배열 int top=0; int error_f=0; // 에러시 리턴값 저장 int length; int i; int j; double start, finish; start = .. 더보기 Euclide & non Euclide gcd algorithm C source Euclide & non Euclide gcd algorithm 시간 측정 포함 ------------------------------------ #include #include int gcd1(int m, int n); int gcd2(int m, int n); main(void) { int m; int n; int i; int result; double start, finish; printf("m과 n을 입력하시오(always m>n) : "); scanf("%d %d", &m, &n); start = clock(); result = gcd1(m,n); for(i=0; i 더보기 페도라12에 삼성 넷북N140 무선랜 RTL8192 드라이버 설치 Using the Realtek 8172 and 8192se Wireless Controller with Fedora 12 Author(s) Bill Giannikos (Home Page) Introduction Fedora 12 does not support either the Realtek 8172 or 8192se as standard. This guide will help you add support for these wireless controllers to your system. Notes These are not the best drivers ever written and may exhibit problems (such as dropouts) from time to time. If you a.. 더보기 이전 1 ··· 3 4 5 6 7 8 다음