Update README.md

This commit is contained in:
marina 2023-08-07 18:07:35 -07:00 committed by GitHub
parent f895ac1da8
commit c176257c26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,8 @@
* as long as we know the length of the queue, we can instantly locat its tails based on this formula:
<br>
```
tail_index = (head_index + queue_length - 1) % queue_capacity
```