|
프로그램에 공간 복잡도를 계산해서 출력 하는 소스 입니다..
c언어로 제작 되었습니다.
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.04.14
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define LOOP 10
#define MAX 1000
int data1[MAX],data2[MAX];
int count;
void quicksort(int data1[], int left, int right);
void bin_inser_sort(int data2[], int n);
void main() {
int i, j, qsum, bsum;
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include `YQueue.h`
int main()
{
YQueue<int> TestI(4);
YQueue<char> TestC(4);
int a = 1, b = 2, c = 4, d = 5;
TestI.Insert(a);
a = TestI.Delete();
TestI.Insert(b);
TestI.Insert(c);
TestI.Insert(d);
// a = TestI.Delete();
|
- 페이지 1페이지
- 가격 200원
- 등록일 2010.06.08
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
) srand((unsigned)time(NULL)) //난수 초기화 매크로
#define N 1000
void swap(int a[], int from, int to) // swap 하는 함수
{
int temp;
temp = a[from];
a[from] = a[to];
a[to] = temp;
}
main()
{
int i,j,min,loop;
int a[N];
randomize();
for(i=0;i<N;i++)
a[i] = rand()%1000 + 1;
printf("\n\n------------
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2006.06.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
LinkedlistQueue.h
#ifndef LINKEDLISTQUEUE_H
#define LINKEDLISTQUEUE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct tagNode{
int Data;
struct tagNode* NextNode;
}Node;
typedef struct tagLinkedQueue{
Node* Front; // 전단을가리키는포인
|
- 페이지 20페이지
- 가격 2,000원
- 등록일 2011.10.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <string.h>
int main()
{
char str[1024];
char arr[100][1000]; //토큰 저장
int i = 0;
char * token, ch;
char div[] = " ";
int order = -1; //arr[][]배열에 저장하기 위한 변수
int refresh;
printf(" ** Input a sentence ** \n\n : ");
|
- 페이지 1페이지
- 가격 2,000원
- 등록일 2011.01.10
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
32px; POSITION: absolute; TOP: 176px" runat="server" Height="8px" Width="72px">가입이유</asp:label>
<asp:label id="Label4" style="Z-INDEX: 103; LEFT: 232px; POSITION: absolute; TOP: 144px" runat="server" Height="8px" Width="64px">비밀번호</asp:label>
<asp:label id="Label3" st
|
- 페이지 6페이지
- 가격 1,000원
- 등록일 2010.02.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Max heap의 삽입, 삭제 및 현재 상태를 출력하는 프로그램 없음
|
- 페이지 3페이지
- 가격 2,000원
- 등록일 2010.06.03
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
행맨 게임입니다.
|
- 페이지 1페이지
- 가격 500원
- 등록일 2009.08.17
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
lse if (month==2 && year%400==0)
sumDay = 29;
else
sumDay = 28;
cout << year << "년 " << month << "월의 달력입니다." << endl;
cout << "Mon Tue Wed Thu Fri Sat Sun" << endl << endl;
for (int i = 1; i < detectDay(year, month, 1); i++)
cout << "
|
- 페이지 3페이지
- 가격 1,000원
- 등록일 2006.01.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|