목차
1. 3개의 헤더파일
2. 3개의 소스파일
2. 3개의 소스파일
본문내용
/*
CreateQueueDll 함수
함 수 명 : CreateQueueDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateQueueDll(QueueDll *pSelf)
{
pSelf ->list = (DLL *) malloc(sizeof(DLL)); /* DLL형으로 memory 할당 */
CreateDll(pSelf ->list);
pSelf ->front = pSelf ->list ->position;
pSelf ->rear = pSelf ->list ->position;
pSelf ->length = pSelf ->list ->count;
/* 관계성을 위한 함수형 Pointer 변수 */
pSelf ->DestroyQueueDll = DestroyQueueDll;
pSelf ->PutQueueDll = PutQueueDll;
pSelf ->DeleteQueueDll = DeleteQueueDll;
pSelf ->GetLengthQueueDll = GetLengthQueueDll;
pSelf ->IsEmptyQueueDll = IsEmptyQueueDll;
pSelf ->PrintQueueDll = PrintQueueDll;
pSelf ->PrintAllQueueDll = PrintAllQueueDll;
return;
}
CreateQueueDll 함수
함 수 명 : CreateQueueDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateQueueDll(QueueDll *pSelf)
{
pSelf ->list = (DLL *) malloc(sizeof(DLL)); /* DLL형으로 memory 할당 */
CreateDll(pSelf ->list);
pSelf ->front = pSelf ->list ->position;
pSelf ->rear = pSelf ->list ->position;
pSelf ->length = pSelf ->list ->count;
/* 관계성을 위한 함수형 Pointer 변수 */
pSelf ->DestroyQueueDll = DestroyQueueDll;
pSelf ->PutQueueDll = PutQueueDll;
pSelf ->DeleteQueueDll = DeleteQueueDll;
pSelf ->GetLengthQueueDll = GetLengthQueueDll;
pSelf ->IsEmptyQueueDll = IsEmptyQueueDll;
pSelf ->PrintQueueDll = PrintQueueDll;
pSelf ->PrintAllQueueDll = PrintAllQueueDll;
return;
}
키워드
추천자료
SQL에 대해서
KNIGHT MOVING PATH
일본의 아동보육제도에 관한 고찰
[정신보건]만성정신장애인의 심리사회적 모델과 사례관리
[자료구조] assignment -sparse matrix구현(희소행렬)-
[교직교육론]현행 교사교육의 문제점 및 대안적 탐색
벡터를 계산하는 인터프리터
소팅 알고리즘(sorting algorithm) 구현 및 분석
자료구조(스택, stack)을 이용한 최단 거리 미로 찾기 알고리즘
[자료구조1] Binary Search Tree - 11주
[자료구조1] Exercising Array - 6주차
[C로 쓴 자료구조론] Real Number Representation - 1주차
mp3검색_설계최종
[데이터베이스] R-tree의 종류별 개요, 기능, 특성분석 및 활용도 조사
소개글