April 22nd, 2012, 11:27 PM
i am having a problem with the continue button when i don't enter anything in the text field i get an error "org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at...
March 19th, 2012, 05:38 PM
i am not sure if this is right but i dont know have to set the pointer, any hint?
void DeQueue:: push_back(int data)
{
if(front==-1){
storage[0]=data;
front = back = 0;
return;
}
March 19th, 2012, 05:24 PM
the push_back function pushes the numbers to the front , how can i make it push to the back
void DeQueue :: push_back(int data)
{
ListNode *tmp = new ListNode;
tmp->set_back(storage);...
March 19th, 2012, 05:06 PM
This is the output of my program : Initial Queue 40 30
40 was popped from back 30
New Queue 12 10 8 30
i am having problem with the function push_back, i am try push 12 10 8 after 30. in...
February 26th, 2012, 06:30 PM
February 26th, 2012, 01:23 PM
Hello
i created a program which uses Sparse 2 dimensional array, but i am not sure if i did it in the right way .
this is the instruction i have:
Create a constructor and a destructor. The...