how to swap two numbers in a linked list without exchanging
the data but only the links?

Answers were Sorted based on User's Feedback



how to swap two numbers in a linked list without exchanging the data but only the links?..

Answer / sha

let q=20,r=10 and p be a node previous to q
sequence is p-q-r
temp is pointer of link list.
then
temp=p->next;
p->next=temp->next;
p->next->next=temp;
and temp next can be conected to p->next->next->next if
there is any

Is This Answer Correct ?    4 Yes 0 No

how to swap two numbers in a linked list without exchanging the data but only the links?..

Answer / pavny

Suppose List contains 3 no. 10, 20, 30
try to exchange 10 and 20.
head points to 10.

temp = head;
head = head -> next;
temp -> next = head - next;
head -> next = temp;

I think it works..

Is This Answer Correct ?    3 Yes 2 No

how to swap two numbers in a linked list without exchanging the data but only the links?..

Answer / siva

head points 20
head=head->link;
link->next;
link->head=head->next

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More STL Interview Questions

Distinguish between: a) Normal layout & Print Layout views b) Windows Clipboard & office Clipboard c) Save & Save As Commands d) Program File & Data File e) Pie Charts & Barr Charts

0 Answers  


To modify an, existing worksheet. What steps are involved for: 1. Inserting and deleting rows and columns. 2. Printing cell formulas 3Jld displayed values 3. Using the page setup command

0 Answers  


What is a list in c++ stl?

0 Answers  


c# support late binding or early binding.

6 Answers  


write a program to search and display the position of an element in a single-dimentional array using function.

1 Answers  


What are the symptoms of stl?

0 Answers  


Explain when u will use Observer pattern and how u will implement in c++ .

1 Answers  


Define stl.

0 Answers  


How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.

2 Answers  


Write a program in C++ returning starting locations of a substring using pointers

1 Answers  


WHAT IS FIBONACCI SERIES?

4 Answers   Stewart,


5. Write c++ function that would intake a string and return the number of occurrences of a given character in that sring Ex:- if the word is “Colombo” and count the occurrences of the letter “o” the function would return 3

1 Answers  


Categories