Can we remove an element in a single linked list without
traversing?
Lets suppose the link list is like this
1 2 3 4 5 6
We need to remove 4 from this list (without traversing from
beginning) and the final link list shud be 1 2 3 5 6
only thing we know is the pointer to element "4". How can
we remove "4" and link "3" to "5"?
Answer Posted / mpoleg
1) copy content of element 5 to element 4
2) link element 4(which already contains number 5) to
element 6
3) delete element 5
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Explain what data encapsulation is in c++?
Which format specifier is used for printing a pointer value?
What is the need of a destructor?
Can you explicitly call a destructor on a local variable?
what is a reference variable in C++?
What is std namespace in c++?
explain the reference variable in c++?
What are the advantages of c++? Explain
Explain shallow copy?
What is virtual table?
What is the most powerful coding language?
What is a type library?
What c++ library is string in?
What is using namespace std in c++?
What are the syntactic rules to be avoid ambiguity in multiple inheritance?