Skip to content

Instantly share code, notes, and snippets.

@AahanSingh
Created June 27, 2021 07:45
Embed
What would you like to do?
Deleting the entire linked list
// DeleteList will delete the entire linkedlist.
// Deletion is inplace
func DeleteList(head **Node) {
fmt.Println("\nDeleting entire linkedlist")
var aux *Node
for (*head) != nil {
aux = (*head).Next
*head = nil
*head = aux
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment