|
알고리즘
#include
int main(void)
{
float a[100], b[100]; //a를 배열 100으로 선언, b를 배열 100으로 선언
float c;
int i,n;
printf(`
주어진 다항식은 몇차식인가? `);
scanf(`%d`,&n); // 몇차 다항식인지를 입력받는다
.......
printf(`
`);
|
- 페이지 6페이지
- 가격 700원
- 등록일 2003.12.17
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C언어를 이용한 환형큐 (Circular Queue) 소스파일
1. 프로젝트 파일로 구성되 있습니다.
2. VS 2008, VC++ 6 모두 열립니다.
3. Main(), Queue의 헤더파일, 소스파일로 구성되어 있습니다.
참고.
프로젝트 파일이나 워크스페이스파일을 누르면 실행
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2009.04.04
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
프로그램에 공간 복잡도를 계산해서 출력 하는 소스 입니다..
c언어로 제작 되었습니다.
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.04.14
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
예로 만들어 놓은 input 2개와 .c 파일과 문서화 된 .doc로 구성되어있다.
수업시간에 배운 Linked list를 이용하여 영어 단어 검색을 binary search tree로 구현하는 것이 이번 프로그래밍 과제의 목표입니다.
이번 프로그래밍 과제를 완벽히 수행하기
|
- 페이지 18페이지
- 가격 4,000원
- 등록일 2012.02.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 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주 판매 이력 없음
|