Recent content by dssanton

  1. D

    C++ question...

    Yeah, the order has to be maintained. It is a dynamic queue so if the queue is full, it gets one bigger. I have that part down. Just this stupid purge function. I'll try the two for loops in the morning. Thanks and keep the ideas coming. Dans87
  2. D

    C++ question...

    I have about 90% of a project done but I am running into a wall now. I wrote a class that is a normal queue. It has normal functions like insert, delete, ...but the one function I am having problems writing is purge. It just needs to be a simple function that looks through all the elements in an...