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

전문지식 1,400건

/******************************************************* File : Huffman_code.c Author : Donggewn Kim Date : 07/09/03 This program was designed primarily to illustrate the following: - Huffman Algorithm - Heap, List ********************************************************/ 
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2003.09.29
  • 파일종류 기타
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
b-tree 알고리즘을 구현. 
  • 페이지 6페이지
  • 가격 0원
  • 등록일 2007.02.15
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
C 로 옮긴다. 1 디스크를 A 에서 C 로 옮긴다. 4 디스크를 A 에서 B 로 옮긴다. 1 디스크를 C 에서 B 로 옮긴다. 2 디스크를 C 에서 A 로 옮긴다. 1 디스크를 B 에서 A 로 옮긴다. 3 디스크를 C 에서 B 로 옮긴다. 1 디스크를 A 에서 C 로 옮긴다. 2 디스크를
  • 페이지 2페이지
  • 가격 1,000원
  • 등록일 2012.02.27
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include<stdio.h> #include<time.h> #define N 100000 void make_heap(int a[], int n); void heapify(int a[], int n, int k); void heap_sort(int a[], int n); void swap(int *a, int *b); void bubble_sort(int a[],int n); clock_t before; void start_time(void){ before=clock(); } doubl
  • 페이지 3페이지
  • 가격 500원
  • 등록일 2010.07.22
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
int enqueue(int value) { if(endpos+1==maxsize) //endpos가 maxsize에 다달았을때 { if(startpos==-1) //배열의 첫부분이 차있으면 FULL을 출력한다. { printf("Q is Full\n"); return 0; } else { endpos=endpos-maxsize-1; //endpos가 maxsiz
  • 페이지 4페이지
  • 가격 500원
  • 등록일 2010.07.22
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 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_SIZE 10 typedef struct { 프로그램 7.7 정렬된 두 리스트의 합병 프로그램 7.9 merge_pass 프로그램 7.10 merge_sort
  • 페이지 4페이지
  • 가격 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주 판매 이력 없음
#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주 판매 이력 없음
#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주 판매 이력 없음
top