Posts

Showing posts from July, 2020

Linked List - Delete given node

Image
You are given a pointer/ reference to the node which is to be deleted from the linked list of  N  nodes. The task is to delete the node. Pointer/ reference to head node is not given.  Note:  No head reference is given to you. Input: First line of input contains number of testcases T. For each testcase, first line of input contains length of linked list and next line contains the data of the linked list. The last line contains the node to be deleted. Output: For each testcase, in a newline, print the linked list after deleting the given node. Your Task: This is a  function  problem. You only need to complete the  function deleteNode  that takes  reference  to the node that needs to be  deleted . The  printing  is done  automatically  by the  driver code . Expected Time Complexity  : O(n) Expected Auxilliary Space  : O(n) Constraints: 1 <= T <= 100 1 <= N <= 10 3 Example: Input : 2 2...