I can't get the program to dequeue properly. I can't get front to store next
after the current front is deleted. Can anyone help me figure out what I am doing wrong?
template <class T>
int DynIntQueue<T>::dequeue(){
if(front->node==NULL){ //¿ where did you set any value to front->node ?
front->data=NULL;
numNodes=0;
return numNodes;
}else
What should the if condition be because I get an exception violation when I change the if condition?
Exception: STATUS_ACCESS_VIOLATION at eip=00401F53