employer cover photo
employer logo
employer logo

Check Point Software Technologies

Engaged Employer

Check Point Software Technologies Interview Question

Given you have a pointer to a node in a linked list, how to remove the current node in O(1).

Interview Answer

Anonymous

Nov 3, 2020

Having pointer to current node you can copy value and "next" pointer from the next node and delete a next node

1