Domanda di colloquio di Visible Alpha

Round 1: Given a pointer to a node in the linked list and nothing else (not even head pointer) delete that node.

Risposta di colloquio

Anonimo

1 gen 2019

This is simple question just look up to next node in the linked list using current node's next pointer, copy data and next pointer of that node to current node data and its next pointer and delete that next node.