void insertAtTail(node *&tail, node* &head, int d) {
node *temp = new node(d);
if (tail == NULL) {
tail = head = temp;
} else {
tail->next = temp;
temp->prev = tail;
tail = temp;
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter