You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution, you can watch the vidéo explanation here : https://youtu.be/WO7Uz7sQML4
void reversePrint(SinglyLinkedListNode* llist) { if(llist == nullptr) return; reversePrint(llist->next); cout << llist->data << endl; }
Seems like cookies are disabled on this browser, please enable them to open this website
Print in Reverse
You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution, you can watch the vidéo explanation here : https://youtu.be/WO7Uz7sQML4