循环队列的元素个数怎么表示?

问题描述:

循环队列的元素个数怎么表示?

front为对头指针,rear为对尾指针,n为队列最大元素个数. 队列元素个数=(rear-front 1 n)%n %是求余数