대기열 학습 노트 순환 대기열
//
//CycQueue.h
#define QUEUEMAX 15
typedef struct
{
DATA data[QUEUEMAX]; //
int head; //
int tail; //
}CycQueue;
CycQueue *CycQueueInit ()
{
CycQueue *q;
if(q=(CycQueue *)malloc(sizeof(CycQueue))) //
{
q->head = 0; //
q->tail = 0; //
return q;
}else
return NULL; //
}
void CycQueueFree(CycQueue *q) //
{
if(q!=NULL)
free(q);
}
int CycQueueIsEmpty(CycQueue *q) //
{
return (q->head==q->tail) ;
}
int CycQueueIsFull (CycQueue *q) //
{
return ((q->tail+1)%QUEUEMAX == q->head) ;
}
int CycQueueIn(CycQueue *q,DATA data) //
{
if((q->tail+1)%QUEUEMAX == q->head)
{
printf(" !
");
return 0;
}else{
q->tail = (q->tail+1)%QUEUEMAX; //
q->data[q->tail] = data;
return 1;
}
}
DATA *CycQueueOut (CycQueue *q) //
{
if(q->head == q->tail)
{
printf(" !
");
return NULL;
}else{
q->head=(q->head+1)%QUEUEMAX;
return &(q->data[q->head]);
}
}
int CycQueueLen(CycQueue *q) //
{
int n;
n=q->tail-q->head;
if(n<0)
n=QUEUEMAX + n;
return n;
}
DATA *CycQueuePeek(CycQueue *q) // 1
{
if(q->head==q->tail)
{
printf(" !
");
return NULL;
}else{
return &(q->data[(q->head+1)%QUEUEMAX]);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단한 애니메이션 대기열 모델텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.