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

전문지식 94,500건

#include <stdio.h> #include <stdlib.h> #define MAX 10 //배열을 저장하는 구조체 선언 typedef struct MatrixArray { int index; int ** Matrix; int row; int col; }MatrixArray; int **inputMatrix(int row, int col);//행렬 생성(행 열) int inputData(int row, int col);//행렬의 원
  • 페이지 10페이지
  • 가격 1,000원
  • 등록일 2006.06.03
  • 파일종류 기타
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
c언어 자료구조에서 피보나치 수열을 순차적으로 출력하는 프로그램 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2006.04.14
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
c); void StackShow(stackNode * stack, char c, char * str); (2) 실행결과 화면 [트리생성시작] - A*B+C/(D-(E-F*G))/H-I*J 스택의 변화 - 왼쪽부터 최근에 push된 자료임 [Operand Stack] : A [Operator Stack] : [Operand Stack] : A [Operator Stack] : * [Operand Stack]
  • 페이지 15페이지
  • 가격 2,000원
  • 등록일 2005.01.18
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
c언어를 이용한 자료구조에서 그래프 표현과 진출 차수를 계산하는 소스임 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2006.04.14
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include <stdio.h> /* stdin, fflush() */ #define MAX 5 #define OVERFLOW 0 #define UNDERFLOW 0 int queue[MAX]; int front=0; /* 다음에 꺼낼 자료 위치,front에서 꺼낸다 */ int rear=0; /* 최근에 넣은 자료의 다음 위
  • 페이지 4페이지
  • 가격 1,000원
  • 등록일 2006.02.21
  • 파일종류 텍스트(txt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include <iostream.h> template <class Data_type> class Stack { public: Stack(int Maxsize = Defaultsize); ~Stack(); int Isfull(); void Add(const Data_type& item); int Isempty(); Data_type* Delete(Data_type& x); void Print(); private: void Stackfull(); void Stackem
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2006.02.21
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #include <conio.h> #define ARRY_SIZE 10 int a[ARRY_SIZE]; int size = 0; int init_array(); int ins_value(); int del_value(); int prn_array(); 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2005.02.28
  • 파일종류 기타
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
c",&ch); getchar(); system("clear"); break; case 2: del_result=del(); if(del_result == 0) printf("원형 큐의 데이터가 없음!! \n"); else printf("원형 큐의 데이터 삭제 완료!!\n"); printf("엔터키를 눌러주세요!!\n"); scanf("%c
  • 페이지 10페이지
  • 가격 1,300원
  • 등록일 2004.10.11
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
c) #include <stdio.h> int A(int m, int n){ while (m != 0){ if (n == 0) n = 1; else n = A(m, n-1); m = m - 1; } return n+1; } void main(){ int x=0; int y=0; x = A(3,2); y = A(2,3); printf("A(3,2) = %d, A(2,3) = %d\n",x,y); } // 부록 하노이탑 문제 #include <stdio.h> int hanoi(int n,char A,
  • 페이지 9페이지
  • 가격 500원
  • 등록일 2016.01.13
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
보고서 일부서 발췌 1) bubble sort #define SWAP(x, y, t) ( (t)=(x), (x)=(y), (y)=(t) ) void bubbleSort(int list[], int n) { int i, j, temp; for(i=n-1; i>0; i--){ for(j=0; j<i; j++) /* 앞뒤의레코드를비교한후교체*/ if(list[j]>list[j+1]) SWAP(list[j
  • 페이지 50페이지
  • 가격 3,000원
  • 등록일 2010.01.04
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top