how to find number of elements in a Circular Queue

后端 未结 13 1557
我寻月下人不归
我寻月下人不归 2021-01-13 03:10

how do i find the number of items in a circular queue?

|front - rear| doesnt always work.

is there one equation to know how many element is in a cir

13条回答
  •  感情败类
    2021-01-13 03:51

    Assuming you are using array of size N for queue implementation, then size of queue would be size = (N-front + rear) mod N.

提交回复
热议问题