Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 164 Bytes

circular_arrays.md

File metadata and controls

5 lines (4 loc) · 164 Bytes

Circular Arrays


They are just the array index + 1 mod the array length, (index + 1) % array.length This makes accessing the array elements more easier.