You are viewing a single comment's thread. Return to all comments →
Recursive C++ Linked List Comparison
bool compare_lists(SinglyLinkedListNode* head1, SinglyLinkedListNode* head2) { if (head1 == NULL && head2 == NULL) { return true; } if (head1 == NULL || head2 == NULL) { return false; } return (head1->data == head2->data) && 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 →
Recursive C++ Linked List Comparison