Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / truong nguyen

Memory address of all elements in a linked list are not
continuous. So if we only know the memory address of the
element "4", we cannot know memory address of element "3"
and "5" without traversing. And we cannot remove it from the
linked list.

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the full form of ios?

1139


What are mutator methods in c++?

1201


Explain what you mean by a pointer.

1160


How static variables and local variablesare similar and dissimilar?

1099


How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?

2369


What is the maximum combined length of command line arguments including the space between adjacent arguments?

1042


What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random

1192


Describe the advantages of operator overloading?

1081


Write some differences between an external iterator and an internal iterator?

1087


What is time_t c++?

1206


What is the best way to take screenshots of a window with c++ in windows?

1094


How does c++ structure differ from c++ class?

1185


Which sort does c++ use?

1084


How do I write a c++ program?

1172


On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?

1188