employer cover photo

Beijing Rising Technology

Est-ce votre entreprise ?

Question d’entretien chez Beijing Rising Technology

Given a node in a linked list, remove the next node which contains specific value.

Réponse à la question d'entretien

Utilisateur anonyme

12 oct. 2012

This is a quite typical question, since what you need to do is to scan the list and find it. Also if the given node contains the specific value, we need to copy next node's value to this node and delete current node.