|
구조를 검사해서 같으면 참을 반환
bool isEaqual( PNODE first , PNODE second )
{
// 둘다 널일경우에 참 반환
if ( ( !first && !second ) )
return TRUE;
// 태그가 데이터링크 혹은 데이터 일때
// 둘다 존재하고 태그도 같고 데이터링크와 ,링크가 같으면 참 반환
el
|
- 페이지 41페이지
- 가격 3,000원
- 등록일 2011.11.08
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 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주 판매 이력 없음
|
|
queue_pointer *front, queue_pointer *rear, int item) {
/*큐의 rear에 원소를 삽입*/
queue_pointer temp = (queue_pointer) malloc(sizeof(queue));
if(IS_FULL(temp)) {
fprintf(stderr, \"The memory is full\\n\");
exit(1);
}
temp->vertex = item;
temp->link = NULL;
if(*front)
(*rear)->link = temp;
|
- 페이지 56페이지
- 가격 3,000원
- 등록일 2011.11.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
int enqueue(int value)
{
if(endpos+1==maxsize) //endpos가 maxsize에 다달았을때
{
if(startpos==-1) //배열의 첫부분이 차있으면 FULL을 출력한다.
{
printf("Q is Full\n");
return 0;
}
else
{
endpos=endpos-maxsize-1; //endpos가 maxsiz
|
- 페이지 4페이지
- 가격 500원
- 등록일 2010.07.22
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
f( (Cur_X + ktmove1[6] >= 0) && (Cur_Y + ktmove2[6] < board_size_col) )
{
if( !board[Cur_X + ktmove1[6] ][Cur_Y + ktmove2[6] ] )
{
exits[6] = cmpBoard(board,board_size_row,board_size_col,Cur_X
+ktmove1[6],Cur_Y+ktmove2[6])+1;
}
}
if( (Cur_X + ktmove1[7] >= 0) && (Cur_Y + ktmove2[7] < boa
|
- 페이지 55페이지
- 가격 3,000원
- 등록일 2011.11.08
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
5);
gotoxy(count,1);
printf(\"%d\",t=t-10);
gotoxy(count++,5);
putchar(25);
for(i=0; i<8; i++)
{
for(j=0; j<4; j++)
{
gotoxy(count++,5);
putchar(5);
}
gotoxy(count,1);
printf(\"%d\",t=t-10);
gotoxy(count++,5);
putchar(25);
}
gotoxy(count++,5);
putchar(5);
gotoxy(count++,5);
putchar(5);
gotoxy(
|
- 페이지 39페이지
- 가격 3,000원
- 등록일 2011.11.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe C를 이용한 미로 찾기
mazeeasy.dsw
mazeeasy.ncb
mazeeasy.opt
mazeeasy.plg
mazeeasy.c
mazeeasy.dsp
[Debug]
mazeeasy.exe
mazeeasy.ilk
mazeeasy.obj
mazeeasy.pch
mazeeasy.pdb
vc60.idb
vc60.pd
|
- 페이지 13페이지
- 가격 2,000원
- 등록일 2011.10.20
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
없음
|
- 페이지 41페이지
- 가격 1,500원
- 등록일 2011.11.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
)
break;
}
}
bool existZero(int aBoard[rowMax][colMax])
{
for (int i = 0; i < row; i++)
for (int j = 0; j < col; j++)
if (aBoard[i][j] == 0)
return true;
return false;
}
void printResult()
{
cout << \"\\n각 타일에 이동한 횟수 : \\n\\n\";
for (int i = 0; i < row; i++)
{
|
- 페이지 3페이지
- 가격 1,500원
- 등록일 2007.11.21
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
자료구조론이라는 과목을 통하여 000 교수님을 뵙게 된 것을 영광으로 생각합니다. 교수님을 통하여 프로그램에 과한 지식이 많이 쌓였다고 자신있게 말할수 있습니다.
이번 Term을 통하여 작게는 트리구조 라는 개념을 보다 잘 이해하게 된 것
|
- 페이지 13페이지
- 가격 2,000원
- 등록일 2007.04.16
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|