You are viewing a single comment's thread. Return to all comments →
My Simplest C Solution:
void reversePrint(SinglyLinkedListNode* head) { if(head->next) reversePrint(head->next); printf("%d\n",head->data); }
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 →
My Simplest C Solution: