Algorithm For C/C++: Iterate through the linked list and delete all the nodes one by one. Main point here is not to access next of the current pointer if current pointer is deleted.

In Java, automatic garbage collection happens, so deleting a linked list is easy. We just need to change head to null.

C Programming:

[pastacode lang=”c” manual=”%2F%2F%20C%20program%20to%20delete%20a%20linked%20list%0A%23include%3Cstdio.h%3E%0A%23include%3Cstdlib.h%3E%0A%23include%3Cassert.h%3E%0A%20%0A%2F*%20Link%20list%20node%20*%2F%0Astruct%20node%0A%7B%0A%20%20%20%20int%20data%3B%0A%20%20%20%20struct%20node*%20next%3B%0A%7D%3B%0A%20%0A%2F*%20Function%20to%20delete%20the%20entire%20linked%20list%20*%2F%0Avoid%20deleteList(struct%20node**%20head_ref)%0A%7B%0A%20%20%20%2F*%20deref%20head_ref%20to%20get%20the%20real%20head%20*%2F%0A%20%20%20struct%20node*%20current%20%3D%20*head_ref%3B%0A%20%20%20struct%20node*%20next%3B%0A%20%0A%20%20%20while%20(current%20!%3D%20NULL)%20%0A%20%20%20%7B%0A%20%20%20%20%20%20%20next%20%3D%20current-%3Enext%3B%0A%20%20%20%20%20%20%20free(current)%3B%0A%20%20%20%20%20%20%20current%20%3D%20next%3B%0A%20%20%20%7D%0A%20%20%20%0A%20%20%20%2F*%20deref%20head_ref%20to%20affect%20the%20real%20head%20back%0A%20%20%20%20%20%20in%20the%20caller.%20*%2F%0A%20%20%20*head_ref%20%3D%20NULL%3B%0A%7D%0A%20%0A%2F*%20Given%20a%20reference%20(pointer%20to%20pointer)%20to%20the%20head%0A%20%20of%20a%20list%20and%20an%20int%2C%20push%20a%20new%20node%20on%20the%20front%0A%20%20of%20the%20list.%20*%2F%0Avoid%20push(struct%20node**%20head_ref%2C%20int%20new_data)%0A%7B%0A%20%20%20%20%2F*%20allocate%20node%20*%2F%0A%20%20%20%20struct%20node*%20new_node%20%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20(struct%20node*)%20malloc(sizeof(struct%20node))%3B%0A%20%0A%20%20%20%20%2F*%20put%20in%20the%20data%20%20*%2F%0A%20%20%20%20new_node-%3Edata%20%20%3D%20new_data%3B%0A%20%20%20%20%0A%20%20%20%20%2F*%20link%20the%20old%20list%20off%20the%20new%20node%20*%2F%0A%20%20%20%20new_node-%3Enext%20%3D%20(*head_ref)%3B%0A%20%20%20%20%0A%20%20%20%20%2F*%20move%20the%20head%20to%20point%20to%20the%20new%20node%20*%2F%0A%20%20%20%20(*head_ref)%20%20%20%20%3D%20new_node%3B%0A%7D%0A%20%0A%2F*%20Drier%20program%20to%20test%20count%20function*%2F%0Aint%20main()%0A%7B%0A%20%20%20%20%2F*%20Start%20with%20the%20empty%20list%20*%2F%0A%20%20%20%20struct%20node*%20head%20%3D%20NULL%3B%0A%20%20%20%20%0A%20%20%20%20%2F*%20Use%20push()%20to%20construct%20below%20list%0A%20%20%20%20%201-%3E12-%3E1-%3E4-%3E1%20%20*%2F%0A%20%20%20%20push(%26head%2C%201)%3B%0A%20%20%20%20push(%26head%2C%204)%3B%0A%20%20%20%20push(%26head%2C%201)%3B%20%0A%20%20%20%20push(%26head%2C%2012)%3B%0A%20%20%20%20push(%26head%2C%201)%3B%20%20%20%0A%20%20%20%20%0A%20%20%20%20printf(%22%5Cn%20Deleting%20linked%20list%22)%3B%0A%20%20%20%20deleteList(%26head)%3B%20%20%0A%20%20%20%20%0A%20%20%20%20printf(%22%5Cn%20Linked%20list%20deleted%22)%3B%0A%7D” message=”” highlight=”” provider=”manual”/]

Output:

 Deleting linked list
 Linked list deleted

Time Complexity: O(n)
Auxiliary Space: O(1)

[ad type=”banner”]