|
c;
int i,n;
printf(`
주어진 다항식은 몇차식인가? `);
scanf(`%d`,&n); // 몇차 다항식인지를 입력받는다
.......
printf(`
`);
b[1]=a[1];
for(i=2; i<=n; i++)
b[i]=a[i]+c*b[i-1];
// b의 n차는 b의 n-1 차의 값에 상수를 곱하
|
- 페이지 6페이지
- 가격 700원
- 등록일 2003.12.17
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
minus : stack2[*top2] = op1-op2;
data = `-`;
break;
case times : stack2[*top2] = op1*op2;
data = `*`;
break;
case divide : stack2[*top2] = op1/op2;
data = `/`;
break;
case wtimes : stack2[*top2] = pow(op1,op2); //op1의 op2승 수
data = `^`;
}
printf(` %c`,data);
}&nbs
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 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주 판매 이력 없음
|
|
c 1
b 2 a 4 f 4
c 2 a 1 d 2
d 4 a 2 c 2 f 4 g 4
e 2 a 3 f 4
f 5 b 4 e 4 d 4 j 2 k 4
g 4 d 4 h 3 i 3 j 4
h 2 g 3 i 2
i 3 g 3 h 2 j 2
j 4 g 4 i 2 f 2 k 1
k 2 f 4 j 1
예시)
9
b 3 a 35 c 126 f 150
a 1 e 247
c 3 d 117 g 220 f 162
d 0
e 1 h 98
f 3 e 82 g 154 h 120
g 1 i 106
h 0
i 0
7
a 3 b 6 c 5 d 5
b 1 e
|
- 페이지 31페이지
- 가격 3,000원
- 등록일 2012.11.03
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
void main()
{
char data[5];
int in_num1;
int end=1; // while 탈출용
while(end){
printf("\n1.자료입력\n2.자료삭제\n3.자료출력\n4.EXIT\n");
scanf("%d",&in_num1);
switch(in_num1){
case 1: printf("자료입력(최대5)");
scanf("%s",data);
insert_Node(data);
bre
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2007.02.09
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
change_node->llink); // 대체할 노드 탐색 함수 호출
change_node -> item = temp -> item; // 삭제 할 노드에 대체할 데이타 저장
del_tree(temp); //트리 구조를 위한 재연결 함수 호출
}
}
// 왼쪽 서브트리 탐색 후 가장 큰 데이타 호출 함수
node_pointer max_searc
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2004.06.19
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<stdlib.h>
#define MAX 10
typedef struct queue{
int front,rear;
int queuearr[MAX];
}Queue;
void make(Queue *s)
{
int i;
s->front=-1;
s->rear=-1;
for(i=0;i<10;i++) s->queuearr[i]=0;
}
Queue* makeQ()
{
Queue* s=(Queue*)mall
|
- 페이지 1페이지
- 가격 2,000원
- 등록일 2011.01.10
- 파일종류 기타
- 참고문헌 없음
- 최근 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주 판매 이력 없음
|