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

전문지식 25,815건

#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주 판매 이력 없음
#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주 판매 이력 없음
C로쓴 자료구조론 연습문제 풀이입니다. 1~ 7장 제가 직접 짠 완벽한 소스구여. 필요하신분 싸게 파니깐 받아가서 좋게 쓰세여. 
  • 페이지 20페이지
  • 가격 4,000원
  • 등록일 2010.04.17
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
2.5 활용도 특징 2.6 최적화된 구현 2.7 재 방문된 재귀 3. 외부정렬 종류 및 분석 3.1 자연 2-원 합병 3.2 균형 2-원 합병 3.3 균형 m-원 합병 3.4 다단계 합병 3.5 대체 선택에 의한 런 생성 4. 알고리즘 구현 및 성능 비교 5. 결론 6. 참고 문헌
  • 페이지 38페이지
  • 가격 3,000원
  • 등록일 2009.03.16
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 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> #include<stdlib.h> typedef struct tree_node *tree_pointer; typedef struct tree_node { int Key; tree_pointer left; tree_pointer right; }tree_node; void insertToBT(tree_pointer *ptr, int num) ; tree_pointer binary_search(tree_pointer ptr, int key); void inOrderT
  • 페이지 50페이지
  • 가격 3,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
8. 연결 리스트를 왼쪽에서 오른쪽으로 순회해 나가는 동안 링크를 반대로 만들어 양 방향으로 이 리스트를 순회해 나가는 것이 가능하다 (즉, 왼쪽에서 오른쪽으로, 그리고 제한적으로 오른쪽에서 왼쪽으로). 리스트 ptr을 이런 방식으로
  • 페이지 5페이지
  • 가격 2,000원
  • 등록일 2007.06.05
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include "stack.h" #define MAX_SEQ_SIZE 24 // eqRelation에 대한 구조체 정의 typedef struct _EqRelation { int out[MAX_SEQ_SIZE]; listPointer seq[MAX_SEQ_SIZE]; int seqSize; }EqRelation; // malloc을 사용하여 heap영역에 메모리를 할당시 heap영역이 남아 있는지 검사 i
  • 페이지 4페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#define MAX_TERMS 2500 #define MAX_SIZE 50 //sparse matrix의element구조체선언 typedef struct { int r; int c; int val; }term; //sparse matrix 구조체선언 typedef struct { int numRow; int numCol; int numEle; termlistEle[MAX_TERMS]; }SPARSE_MATRIX; 1주 - Real Number Representation 2
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top