A structure to represent a queue
| 5 | |
| 6 | // A structure to represent a queue |
| 7 | struct Queue { |
| 8 | int front, rear, size; |
| 9 | unsigned capacity; |
| 10 | int* array; |
| 11 | }; |
| 12 | |
| 13 | // function to create a queue |
| 14 | // of given capacity. |
nothing calls this directly
no outgoing calls
no test coverage detected