|
#include <stdio.h>
#include <stdlib.h>
struct PAGE{
int valid; /* valid=1, invalid=0 */
int page_location; /* frame number */
};
struct PAGE *page;
struct FRAME{
int page_num;
int ref_count;
int last_ref_time;
int heap_i; /* heap index */
};
struct FRAME *frame;
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2010.03.10
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C, C++』와우북스, 2009
· 이지영『C로 배우는 쉬운 자료구조』프리렉, 2005
· 위키백과 http://ko.wikipedia.org Ⅰ.문 제··············1
Ⅱ.Program············1 ~ 6
1)기본 설명············1
2)주요소스 및 설명··········1 ~ 6
|
- 페이지 14페이지
- 가격 2,000원
- 등록일 2012.02.24
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
*A, int line){
int j;
FILE *fp;
if((fp=fopen(output_name, "w")) == NULL){
fprintf(stderr, "File opening error");
exit (0);
}
for(j=1; j<=line; j++){
fprintf(fp, "%d\n", A[j]);
}
fclose(fp);
}
void SWAP(int *a, int *b){
int temp;
temp = *a;
*a = *b;
*b = temp;
} 1. 소팅결과
2. 분석
3.
|
- 페이지 9페이지
- 가격 1,000원
- 등록일 2003.09.28
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
간단한 온도 변환기 C 소스입니다.
Temperature conversion : the Celsius scale to the Fahrenheit scale. 간단한 온도 변환기 C 소스입니다.
Temperature conversion : the Celsius scale to the Fahrenheit scale.
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2008.01.22
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
'Y')
{
printf("\n\tEnd of Program.\n\n");
exit(1);
}
}
while (symbol == 'y' || symbol == 'Y');//프로그램 전체 루프
}//End of main
/*******************************자리수를 반환하는 count함수*************************************/
int count(double num)
{
double i, a;
int c, s=0;
int b[] = {1,2,3,4,5,6,
|
- 페이지 4페이지
- 가격 500원
- 등록일 2007.01.21
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|