create an singly linked lists and reverse the lists by
interchanging the links and not the data?

Answer Posted / bhanu yadav

reverse(node *first) //first address of first node in linked
{ node *x,*temp,*ttemp;
temp=first; //temp at first
ttemp=temp->next; //ttemp next to temp

while(temp->next!=null)
{ x=ttemp->next;
ttemp->next=temp;
temp=ttemp;
ttemp=x;
}
}

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is binary tree example?

726


How do you explain bubble sort?

646


What is meant by hashing?

612


What are the 3 types of variables?

653


Is stack a dynamic data structure?

636


Explain what are the major data structures used in the rdbms?

720


Explain what are the notations used in evaluation of arithmetic expressions using prefix and postfix forms?

723


Define degree of the node?

744


How can you insert a node in a random location of the linked list?

661


What is difference between while and do while?

652


Describe stack operation.

725


Explain in brief a linked list.

701


Which sort algorithm is best?

646


Which is faster hashmap or hashset?

640


Explain binary tree traversals?

666