• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 11,333건

#include <stdio.h> #include <stdlib.h> #define MAX_STACK_SIZE 100 #define MAX_EXPR_SIZE 100 typedef enum{lparen, rparen, plus, minus, times, divide, mod, eos, operand} precedence; static int isp[]={0, 19, 12, 12, 13, 13, 13, 0}; static int icp[]={20, 19, 12, 12, 13, 13, 13 ,0}; i
  • 페이지 5페이지
  • 가격 2,000원
  • 등록일 2007.11.05
  • 파일종류 아크로벳(pdf)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include<stdio.h> void MoveDisk(int,char,char,char); int main(void){ int n; printf("Input Disk Number >> "); scanf("%d",&n); // MoveDisk로 n값과 x,y,z 문자를 넘긴다. MoveDisk(n,'x','y','z'); return 0; } 4주 - Recursion
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
// Maze #include<stdio.h> #define MAX_ROW 20 #define MAX_COL 20 #define MAX_STACK_SIZE (MAX_ROW*MAX_COL) #define FALSE 0 // FALSE의 초기화 #define TRUE 1 // TRUE의 초기화 #define Empty -1 #define North 0 #define East 2 typedef struct{ int eRow; int eCol; int eDir; }eleme
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <string.h> #define MAX_STACK_SIZE 100 // stack의최대크기 #define MAX_EXPR_SIZE 100 // 수식의최대크기 /* 사용될operation */ typedef enum { lparen, rparen, uplus, uminus, power, times, divide, mod, plus, minus, eos, operand }precedence; /* Token(연
  • 페이지 5페이지
  • 가격 1,500원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
// Queue.h #include <stdio.h> #include <stdlib.h>// malloc, free의사용 #define TRUE 1 #define FALSE 0 typedef int boolean; typedef char element;// element 타입의정의 typedef struct _listNode *listPointer;// 노드에대하여포인터로타입정의 typedef struct _listNode { // 리스트
  • 페이지 5페이지
  • 가격 1,500원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <windows.h> unsigned long int ackermann(int,int); void main() { int m,n; unsigned long int result; LARGE_INTEGER freq, startTime, endTime; printf("[Ackermann] input a integer number >> "); scanf("%d %d",&m,&n); if( QueryPerforma
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #define INPUT_SIZE 10 #define FLOAT_SIZE 32 typedef union { float floatType; unsigned long bit32Type; }UFLOAT; float strTofloat(char* str); void printBit_Float(float userRealNum); int main() { char inputStr[11] = {0}; float outputNum = 0.0; // 입력받기 printf("
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #define MAX_VERTICES 8 #define FALSE 0 #define TRUE 1 typedef struct node *node_point; typedef struct node ); 
  • 페이지 2페이지
  • 가격 2,000원
  • 등록일 2010.03.04
  • 파일종류 아크로벳(pdf)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #define MAX_STACK_SIZE 100 /*스택의 최대 크기 */ #define EXIT_ROW 11 #define EXIT_COL 11 // 프로그램 3.1 스택에로의 삽입 // 프로그램 3.2 스택으로 부터 삭제 // 프로그램 3.8 미로 탐색 함수
  • 페이지 4페이지
  • 가격 2,000원
  • 등록일 2010.03.04
  • 파일종류 아크로벳(pdf)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
C프로그래밍(이한출판사,2009) HOROWITZ 외 2명, C로 쓴 자료구조론(교보문고, 2009) 김은철, 초보자를 위한 C언어 300제(정보문화사, 2004)p325 「배열과 관련한 파일 입출력」,『C언어를 배우자』,2010.04.03, http://cafe.naver.com /cafec/161766 1. 구현환경 2
  • 페이지 6페이지
  • 가격 2,300원
  • 등록일 2012.04.18
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top