|Home |Login |Registration |Struts Step by Step Tutorial |Hibernate Step by Step Tutorial |Spring Step by Step Tutorial |JSP Step by Step Tutorial |JDBC Step by Step Tutorial |Web Services Step by Step Tutorial |EJB fundamentals | ORACLE Step by Step Tutorial | SCJP 5.0 and SCJP 6.0 Study Guide | SCWCD 5.0 Study Guide | SCJP Tips
Java mock test | SCJP mock test | SCJP DUMP | SCBCD mock test |Java online test exam | JSP online test | ORACLE online test | Hibernate online test | Servlet online test | Struts online test | EJB online test | C online test | C++ online test | Aptitude online test

Java interview questions | JSP interview questions | ORACLE interview questions | Hibernate interview questions | Servlet interview questions | Struts interview questions | JDBC interview questions | C/C++ interview questions | Spring interview questions | JMS interview questions | Informatica interview questions | EJB interview questions | OOPS and Design Pattern interview questions
1600 PMP mock questions 1400 CAPM mock questions 800 SCJP 6 mock questions 600 OCAJP 7 mock questions 590 OCPJP 7 mock questions 556 SCWCD 5 mock questions 500 OCEJWCD 6 mock questions pdfDownload (java,struts, hibernet etc) JobsJobs and Walkins

 

Recent Questions

!!! C C++ Frequently Asked Questions !!!

How do you write a function that can reverse a linked-list?

SCJP 1.5/1.6 Exam Kit

!!!Answer!!!- From Technical Expert

void reverselist(void)
{
if(head==0)
return;
if(head->next==0)
return;
if(head->next==tail)
{
head->next = 0;
tail->next = head;
}
else
{
node* pre = head;
node* cur = head->next;
node* curnext = cur->next;
head->next = 0;
cur->next = head;
for(; curnext!=0; )
{
cur->next = pre;
pre = cur;
cur = curnext;
curnext = curnext->next;
}
curnext->next = cur;
}
}    

Answered By : null Replied Date : Feb 11 2012
Answer :


Answered By : null Replied Date : Feb 11 2012
Answer :


Answered By : null Replied Date : Jan 23 2012
Answer :


Answered By : null Replied Date : Nov 18 2011
Answer :


Answered By : null Replied Date : Nov 13 2011
Answer :


Answered By : null Replied Date : Oct 16 2011
Answer :


Answered By : null Replied Date : Aug 8 2011
Answer :


Answered By : null Replied Date : Jun 30 2011
Answer :


Answered By : null Replied Date : Jun 17 2011
Answer :


Answered By : null Replied Date : Jun 4 2011
Answer :


Answered By : null Replied Date : Jun 1 2011
Answer :


Answered By : null Replied Date : Mar 6 2011
Answer :


Answered By : null Replied Date : Feb 15 2011
Answer :


Answered By : null Replied Date : Feb 7 2011
Answer :


Answered By : null Replied Date : Feb 7 2011
Answer :


Answered By : null Replied Date : Feb 1 2011
Answer :


Answered By : null Replied Date : Jan 31 2011
Answer :


Answered By : null Replied Date : Jan 31 2011
Answer :


Answered By : null Replied Date : Dec 27 2010
Answer :


Answered By : null Replied Date : Dec 26 2010
Answer :


Answered By : null Replied Date : Dec 26 2010
Answer :


Answered By : null Replied Date : Dec 12 2010
Answer :


Answered By : null Replied Date : Nov 30 2010
Answer :


Answered By : null Replied Date : Nov 28 2010
Answer :


Answered By : null Replied Date : Nov 22 2010
Answer :


Answered By : null Replied Date : Nov 20 2010
Answer :


Answered By : null Replied Date : Nov 16 2010
Answer :


Answered By : null Replied Date : Nov 13 2010
Answer :


Answered By : null Replied Date : Nov 6 2010
Answer :


Answered By : null Replied Date : Nov 6 2010
Answer :


Answered By : null Replied Date : Nov 6 2010
Answer :


Answered By : null Replied Date : Oct 12 2010
Answer :


Answered By : null Replied Date : Oct 7 2010
Answer :


Answered By : null Replied Date : Oct 4 2010
Answer :


Answered By : null Replied Date : Oct 2 2010
Answer :


Answered By : null Replied Date : Sep 9 2010
Answer :


Answered By : null Replied Date : Sep 8 2010
Answer :


Answered By : null Replied Date : Sep 3 2010
Answer :


Answered By : null Replied Date : Sep 1 2010
Answer :


Answered By : null Replied Date : Aug 29 2010
Answer :


Answered By : null Replied Date : Jun 2 2012
Answer :


Answered By : null Replied Date : Jun 3 2012
Answer :


Answered By : null Replied Date : Jun 13 2012
Answer :


Answered By : null Replied Date : Jun 22 2012
Answer :


Answered By : null Replied Date : Aug 20 2012
Answer :


Answered By : null Replied Date : Aug 31 2012
Answer :


Answered By : null Replied Date : Aug 31 2012
Answer :


Answered By : null Replied Date : Sep 8 2012
Answer :


Answered By : null Replied Date : Sep 8 2012
Answer :


Answered By : null Replied Date : Oct 10 2012
Answer :


Answered By : null Replied Date : Dec 14 2012
Answer :


Answered By : null Replied Date : Dec 14 2012
Answer :


Answered By : null Replied Date : Dec 18 2012
Answer :


Answered By : null Replied Date : Jan 3 2013
Answer :


Answered By : null Replied Date : Mar 30 2013
Answer :


 

You can also contribute to this answer:

Your Name:
Answer:

 
Ask Question and get answer from Expert.
View Answers List from Expert.

The information you are posting should be related to java and ORACLE technology. Not political.