You are viewing a single comment's thread. Return to all comments →
c++ solution with recursive function
bool compare_lists(SinglyLinkedListNode* head1, SinglyLinkedListNode* head2) { if (head1->data != head2->data) return false; if (head1->next == nullptr && head2->next == nullptr) return true; if (head1->next == nullptr || head2->next == nullptr) return false; return compare_lists(head1->next, head2->next); }
Seems like cookies are disabled on this browser, please enable them to open this website
Compare two linked lists
You are viewing a single comment's thread. Return to all comments →
c++ solution with recursive function