|
#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주 판매 이력 없음
|
|
ence(stack_top()) >= precedence(*ino)){
*pos++ = pop();
*pos++ = ' ';
}
push(*ino);
ino++;
}
else if(*ino >= '0' && *ino <= '9') // 피연산자이면 스택에 남은 연산자를 모두 팝
{
do{
*pos++ = *ino++;
} while(*ino >='0' && *ino <= '9');
*pos++ = ' ';
}
else ino++;
}
while(!stack_empty()
|
- 페이지 5페이지
- 가격 6,000원
- 등록일 2009.04.01
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
Max heap의 삽입, 삭제 및 현재 상태를 출력하는 프로그램 없음
|
- 페이지 3페이지
- 가격 2,000원
- 등록일 2010.06.03
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
행맨 게임입니다.
|
- 페이지 1페이지
- 가격 500원
- 등록일 2009.08.17
- 파일종류 기타
- 참고문헌 있음
- 최근 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주 판매 이력 없음
|
|
tree_pointer binary_search(tree_pointer ptr, int key){
tree_pointer temp;
while(ptr){
if(ptr->Key==key) // 동일값 : NULL 반환
return NULL;
else if(ptr->Key>key){
if(ptr->left==NULL) // 트리 끝
temp=ptr;
ptr=ptr->left; // 포인터 왼쪽이동
}
else if(p
|
- 페이지 50페이지
- 가격 5,000원
- 등록일 2010.05.26
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
프로그램 종료 |\\n\");
printf(\"\\t\\t\\t---------------------------\\n\");
printf(\"\\n\\t\\t\\t 메뉴 번호 입력 : \");
fflush(stdin);
scanf(\"%d\", &number);
//printf(\"nu
|
- 페이지 54페이지
- 가격 3,000원
- 등록일 2013.09.15
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
- Recursion
5주 - Sorting Performance analysis
6주 - Exercising Array
7주 - Evaluation of Expression
8주 - Circular Queue & Maze
9주 - Stack & Queue using Linked list
10주 - Equivalenece Class
11주 - Binary Search Tree
12주 - Priority Queue
13주 - Selection Tree
14주 - Union-Find Algorithm
|
- 페이지 19페이지
- 가격 2,000원
- 등록일 2010.05.24
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
- Recursion
5주 - Sorting Performance analysis
6주 - Exercising Array
7주 - Evaluation of Expression
8주 - Circular Queue & Maze
9주 - Stack & Queue using Linked list
10주 - Equivalenece Class
11주 - Binary Search Tree
12주 - Priority Queue
13주 - Selection Tree
14주 - Union-Find Algorithm
|
- 페이지 50페이지
- 가격 3,000원
- 등록일 2010.05.26
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
search_And_Withdraw(ACC *head, int num, int amount); // 출금 처리를 해주는 함수.
void DepositAccount(ACC *head); // 입금하기 위해 데이터를 입력받는 함수.
int search_And_Deposit(ACC *head, int num, int amount); // 입금 처리를 해주는 함수.
void TransferAccount(ACC *head); //
|
- 페이지 22페이지
- 가격 3,000원
- 등록일 2008.01.18
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|