Skip to content

Instantly share code, notes, and snippets.

@AahanSingh
Created July 4, 2021 07:29
Embed
What would you like to do?
CList DeleteList
func DeleteList(head **Node) {
fmt.Println("\nDeleting entire linkedlist")
var aux *Node
for *head != nil {
aux = (*head).Next
if aux == *head || aux == nil {
*head = nil
return
}
(*head).Next = nil
*head = aux
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment