what type of queue should i use? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

what type of queue should i use?

i have to solve a problem where i need a dynamic queue because is changing on every iteration. I m making a linkedlist and using it as queue. is it a correct approach also would it be fast as i m using dynamic memory will it affect time? also are there any built in data structure which i could use (using some std library files)?

24th Jan 2018, 1:49 AM
shobhit
shobhit - avatar
1 Answer
+ 6
I'd tell you to continue building your own linked list / queue structure, because it's a really good practice to train your skills and understanding at the topic. That said, there are a few libraries that you might find useful, either to deploy in your program, or just as a reference. http://en.cppreference.com/w/cpp/container/queue http://en.cppreference.com/w/cpp/container/vector
24th Jan 2018, 2:03 AM
Hatsy Rei
Hatsy Rei - avatar