Forum: C++ Oct 29th, 2007 |
| Replies: 4 Views: 1,992 I did implement the copy constructor but still its not working what could be the problem?
/** @file
*
* @course CS1521
* @section 1
*
* Pointer-based <tt>Queue</tt> class... |
Forum: C++ Oct 28th, 2007 |
| Replies: 4 Views: 1,992 how do you implement a copy constructor for this pointer-based ADT
queue
#include "Queuep.h"
#include <cassert>
#include <new>
using namespace std;
Queue::Queue () : backPtr (0),... |