Most voted "queue" questions
Queue is a data structure that implements the FIFO principle (first in, first out).
Learn more…56 questions
Sort by count of
-
0
votes1
answer36
viewsDelete queue element and release memory for this function?
I’m starting to understand pointers better and I’m implementing a queue, and it follows the function: FILA *removeNodeFIFO(FILA **raiz) { FILA *aux = *raiz; if (aux == NULL) { return NULL; } else {…
-
0
votes0
answers18
viewsAzure Function Queue, how to pick up 1 dice at a time?
Hello, good(m) (day, afternoon, night) I am working with a Function that when activated makes a very heavy processing. Because of that I can’t let her pick up multiple dice in the queue, it needs to…
-
0
votes1
answer39
viewshow to do a subroutine on e1_insert,
Guys, I CAN NOT create a subroutine for the 'e1_insert' function (SECOND SNIPPET). This function will be called every time you want to insert a drink. In this piece of code that I put here, it is…
-
-1
votes1
answer83
viewspassage by struct reference does not work (Dynamic queue C)
I’m trying to implement a dynamic Fila. When I start the program (start and end = NULL), and then place to queue a value (queue function) the pointer "end" receives the new queue item, but the…
-
-1
votes1
answer94
viewsQueue is created but never executed
I’m trying to create queues to fire push notifications and emails from an API with Lumen. I got the Warninguser class that makes the shots like this: <?php namespace App\Utils; use…
-
-1
votes1
answer121
viewsQueue schema for PHP code
Good afternoon guys, I’m having a question/need that I haven’t found how to do. I have a code that I use to run several Cnpjs through the Sintegra API, where with the result returned by this I feed…