Questions tagged as 'fila'

1
answer

Question about queuing in C

Can someone analyze my code and see what could be wrong ?. It's a simulation exercise I got to do in college. Error: The code executes, but it goes into looping. Whats the problem? Code: #include <stdio.h> #include <stdlib.h> #d...
asked by 24.09.2016 / 20:38
1
answer

Struct with char vector

So folks, I created this struct typedef struct{ int inicio; int tamanho; int fim; char *elementos[50]; }Fila; And I intend to create a vector of char, just as I created several times a vector of integers. But it is not worki...
asked by 13.06.2016 / 07:01
0
answers

Program stack and row C

I created a program in C to remove (or copy) values from a queue using the output rules of a stack and add them to a new structure. But it is not working as I would like it to be. You are adding values with the queue rules, but I can not pull th...
asked by 04.06.2016 / 20:19
0
answers

What is the best way to queue up

Well, what's the best way to queue up in java? For example I select 3 files, these files stay in a queue until the process of reading and generating the report is finalized, as soon as the report is generated the other file goes into execution....
asked by 13.04.2015 / 22:09
1
answer

passing by struct reference does not work (dynamic queue C)

I'm trying to implement a Dynamic Queue. When I initialize the program (start and end = NULL), and then put to queue a value (function queue) the "end" pointer receives the new queue item, however the "start" does not, whereas in the function I...
asked by 13.11.2018 / 04:01