데이터 구조 - 순환 순서 대기 열의 기본 조작
//
#include <iostream>
#include <string.h>
using namespace std;
#define MAXLEN 8
#define datatype char
#define Status int
typedef struct{
datatype s[MAXLEN];
int front; //
int rear; //
}SeqQueue;
//
Status InitSeqQueue(SeqQueue &sq)
{
sq.front=-1;
sq.rear=-1;
return 1;
}
//
Status IsEmpty(SeqQueue sq)
{ // , 1; 0
if(sq.front==sq.rear) return 1;
else return 0;
}
//
Status IsFull(SeqQueue sq)
{ // , 1;
if(sq.front==(sq.rear+1)%MAXLEN) return 1;
else return 0;
}
//
Status InQueue(SeqQueue &sq,datatype x)
{
//
if(sq.front==(sq.rear+1)%MAXLEN) return 0;
sq.rear++;
sq.s[sq.rear]=x;
return 1;
}
//
Status OutQueue(SeqQueue &sq,datatype &x)
{ // , 0; 1;
//
if(sq.front==sq.rear) return 0;
//
sq.front++;
x=sq.s[sq.front];
return 1;
}
//
Status ShowQueue(SeqQueue &sq)
{
if(sq.front==sq.rear) return 0;
int i=sq.front;
while(i!=sq.rear)
{
i++;
cout<<sq.s[i]<<" ";
}
cout<<endl;
return 1;
}
//
Status ReadQueue(SeqQueue &sq,datatype &x)
{
if(IsEmpty(sq)) return 0; // , 0
sq.front++;
x=sq.s[sq.front];
return 1;
}
//
int main()
{
cout<<" "<<endl;
SeqQueue SQ;
InitSeqQueue(SQ);
cout<<" "<<endl;
InQueue(SQ,'a');
InQueue(SQ,'b');
InQueue(SQ,'c');
cout<<" :"<<endl;
ShowQueue(SQ);
datatype x;
cout<<" :"<<endl;
OutQueue(SQ,x);
cout<<" :"<<endl;
ShowQueue(SQ);
cout<<" :"<<endl;
ReadQueue(SQ,x);
cout<<x<<endl;
return 0;
}
----------------------------------------------------------
:
:
a b c
:
:
b c
:
b
Press any key to continue . . .
드물다
2016-4-18
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.