循环队列元素进队操作是:
A、rear=rear+1;
B、rear=front;
C、rear=(rear+1)%MAXSIZE;
D、rear=front+1;