Compare two linked lists Solution in C/C++ :-


  1. Techno Learner
  2.  
     
    #include <bits/stdc++.h>
     using namespace std;  

     class SinglyLinkedListNode {
        public:
            int data;
            SinglyLinkedListNode *next;

            SinglyLinkedListNode(int node_data) {
                this->data = node_data;
                this->next = nullptr;
            }
     };

     class SinglyLinkedList {
        public:
            SinglyLinkedListNode *head;
            SinglyLinkedListNode *tail;

            SinglyLinkedList() {
                this->head = nullptr;
                this->tail = nullptr;
            }

            void insert_node(int node_data) {
                SinglyLinkedListNode* node = new SinglyLinkedListNode(node_data);

                if (!this->head) {
                    this->head = node;
                } else {
                    this->tail->next = node;
                }

                this->tail = node;
            }
     };

     void print_singly_linked_list(SinglyLinkedListNode* node, string sep, ofstream& fout) {

        while (node) {
            fout << node->data;

            node = node->next;

            if (node) {
                fout << sep;
            }
        }
     }

     void free_singly_linked_list(SinglyLinkedListNode* node) {
        while (node) {
            SinglyLinkedListNode* temp = node;
            node = node->next;

            free(temp);
        }
     }

     // Complete the compare_lists function below.

     bool compare_lists(SinglyLinkedListNode* head1, SinglyLinkedListNode* head2) {
        SinglyLinkedListNode *p=head1, *q=head2;
        int len1=0, len2=0;
        
        while (p) {
            p=p->next;
            len1++;
        }
        
        while (q) {
            q=q->next;
            len2++;
        }
        
        if (len1 != len2) return 0;
        
        p=head1, q=head2;
        
        while (p || q) {
            if (p->data != q->data) {
                return 0;
            }
            p=p->next;
            q=q->next;
        }
        return 1;
     }

     int main()
     {
        ofstream fout(getenv("OUTPUT_PATH"));

        int tests;
        cin >> tests;
        cin.ignore(numeric_limits<streamsize>::max(), '\n');

        for (int tests_itr = 0; tests_itr < tests; tests_itr++) { 
    SinglyLinkedList* llist1 = new SinglyLinkedList();

            int llist1_count;
            cin >> llist1_count;
            cin.ignore(numeric_limits<streamsize>::max(), '\n');

            for (int i = 0; i < llist1_count; i++) {
                int llist1_item;
                cin >> llist1_item;
                cin.ignore(numeric_limits<streamsize>::max(), '\n');

                llist1->insert_node(llist1_item);
            }
          
            SinglyLinkedList* llist2 = new SinglyLinkedList();

            int llist2_count;
            cin >> llist2_count;
            cin.ignore(numeric_limits<streamsize>::max(), '\n');

            for (int i = 0; i < llist2_count; i++) {
                int llist2_item;
                cin >> llist2_item;
                cin.ignore(numeric_limits<streamsize>::max(), '\n');

                llist2->insert_node(llist2_item);
            }

            bool result = compare_lists(llist1->head, llist2->head);

            fout << result << "\n";
        }

        fout.close();

        return 0;
     }



    Subscribe for More interesting questions   
    ------- Team TECHNO LEARNER -------    

     


 

Techno Learner

Same Program in Light Theme -: 

 #include <bits/stdc++.h>
 using namespace std;  

 class SinglyLinkedListNode {
    public:
        int data;
        SinglyLinkedListNode *next;

        SinglyLinkedListNode(int node_data) {
            this->data = node_data;
            this->next = nullptr;
        }
 };

 class SinglyLinkedList {
    public:
        SinglyLinkedListNode *head;
        SinglyLinkedListNode *tail;

        SinglyLinkedList() {
            this->head = nullptr;
            this->tail = nullptr;
        }

        void insert_node(int node_data) {
            SinglyLinkedListNode* node = new SinglyLinkedListNode(node_data);

            if (!this->head) {
                this->head = node;
            } else {
                this->tail->next = node;
            }

            this->tail = node;
        }
 };

 void print_singly_linked_list(SinglyLinkedListNode* node, string sep, ofstream& fout) {

    while (node) {
        fout << node->data;

        node = node->next;

        if (node) {
            fout << sep;
        }
    }
 }

 void free_singly_linked_list(SinglyLinkedListNode* node) {
    while (node) {
        SinglyLinkedListNode* temp = node;
        node = node->next;

        free(temp);
    }
 }

 // Complete the compare_lists function below.

 bool compare_lists(SinglyLinkedListNode* head1, SinglyLinkedListNode* head2) {
    SinglyLinkedListNode *p=head1, *q=head2;
    int len1=0, len2=0;
    
    while (p) {
        p=p->next;
        len1++;
    }
    
    while (q) {
        q=q->next;
        len2++;
    }
    
    if (len1 != len2) return 0;
    
    p=head1, q=head2;
    
    while (p || q) {
        if (p->data != q->data) {
            return 0;
        }
        p=p->next;
        q=q->next;
    }
    return 1;
 }

 int main()
 {
    ofstream fout(getenv("OUTPUT_PATH"));

    int tests;
    cin >> tests;
    cin.ignore(numeric_limits<streamsize>::max(), '\n');

    for (int tests_itr = 0; tests_itr < tests; tests_itr++) { 
SinglyLinkedList* llist1 = new SinglyLinkedList();

        int llist1_count;
        cin >> llist1_count;
        cin.ignore(numeric_limits<streamsize>::max(), '\n');

        for (int i = 0; i < llist1_count; i++) {
            int llist1_item;
            cin >> llist1_item;
            cin.ignore(numeric_limits<streamsize>::max(), '\n');

            llist1->insert_node(llist1_item);
        }
      
        SinglyLinkedList* llist2 = new SinglyLinkedList();

        int llist2_count;
        cin >> llist2_count;
        cin.ignore(numeric_limits<streamsize>::max(), '\n');

        for (int i = 0; i < llist2_count; i++) {
            int llist2_item;
            cin >> llist2_item;
            cin.ignore(numeric_limits<streamsize>::max(), '\n');

            llist2->insert_node(llist2_item);
        }

        bool result = compare_lists(llist1->head, llist2->head);

        fout << result << "\n";
    }

    fout.close();

    return 0;
 }





Subscribe for More interesting questions  
------- Team TECHNO LEARNER -------   

 

0 Comments

Let's Learn Something New

We are a passionate developers constantly working to create solution of Competetive Coding Programming problems that's accurate and easier to understand.