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

전문지식 38,930건

#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주 판매 이력 없음
#include <iostream> #include <iomanip> #define MAX_SIZE 100// Array의최대크기 using namespace std; //DisjointSets의클래스 class DisjointSets { private: int Parent[MAX_SIZE];// DisjointSets을표현할Array int Size; // Array size : Array의size를입력받는다. public: Disjoi
  • 페이지 50페이지
  • 가격 3,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 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주 판매 이력 없음
void main() { int dataQuick[MAX_SIZE];// quick sort에서사용할데이터 int dataInsertion[MAX_SIZE];// insertion sort에서사용할데이터 int size;// 데이터크기 double duration;// 각알고리즘이실행된시간측정값을저장 printf("Input DataSize >> ");// 입력받기 scanf("%d", &siz
  • 페이지 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> #include<string.h> #define NAME_SIZE 10 typedef struct tree_node *tree_pointer; typedef struct tree_node { int Key; // 학번 char Name[NAME_SIZE]; // 이름 tree_pointer left; tree_pointer right; }tree_node; void insertToBT(tree_po
  • 페이지 50페이지
  • 가격 5,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
스택을 이용한 프로그램 괄호 검사입니다 C언어로 작성 돼 있습니다. 없음
  • 페이지 10페이지
  • 가격 2,000원
  • 등록일 2010.02.03
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
8. 연결 리스트를 왼쪽에서 오른쪽으로 순회해 나가는 동안 링크를 반대로 만들어 양 방향으로 이 리스트를 순회해 나가는 것이 가능하다 (즉, 왼쪽에서 오른쪽으로, 그리고 제한적으로 오른쪽에서 왼쪽으로). 리스트 ptr을 이런 방식으로
  • 페이지 5페이지
  • 가격 2,000원
  • 등록일 2007.06.05
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #define IS_FULL(ptr) ((!ptr)) #define COMPARE(x,y) (((x)<(y)) ? -1: ((x)==(y)) ? 0: 1) #define FLASE 0 #define TRUE 1 typedef struct poly_node *poly_pointer; typedef struct poly_node { int coef; int expon; poly_pointer link; }; static
  • 페이지 6페이지
  • 가격 2,000원
  • 등록일 2007.08.22
  • 파일종류 아크로벳(pdf)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top