Trick goes wrong

108
Jump in the discussion.

No email address required.

"Kill yourself." <— this statement is legally assault. So are the infinite variations upon the theme — but you don't have to take my word for it; feel free to inquire with your attorney. However, let's take it on faith for the moment.

Jump in the discussion.

No email address required.

kill yourself then

Jump in the discussion.

No email address required.

uninstall yourself please Snappy

Jump in the discussion.

No email address required.

void deleteTreeUtil(struct node* node)

{

   if (node == NULL) return;

   deleteTreeUtil(node->left);

   deleteTreeUtil(node->right);

   printf("\n Deleting node: %d", node->data);

   free(node);

}

void deleteTree(struct node** node_ref)

{ deleteTreeUtil(*node_ref);

*node_ref = NULL;

}

Or you could always just just select yourself with CTR A then press SHIFT+Delete (at the same time) on your keyboard.

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.