Pergunta de entrevista da empresa Tata Consultancy Services

How to add a node to a linked list at a specified position?

Resposta da entrevista

Sigiloso

8 de jul. de 2012

Three steps to insert a new node into a linked list Determine the point of insertion Create a new node and store the new data in it Connect the new node to the linked list by changing references

1