C Plus Plus Implementation of Linked List

Author: Al-mamun Sarkar Date: 2020-04-16 14:44:18

C Plus Plus Implementation of Linked List. The following code shows how to implement linked list using the C++ programming language.

 

Code:

#include<iostream>
using namespace std;

struct Node
{
    int data;
    Node* link;
};

int main()
{
    Node *A = NULL;

    Node* temp = new Node();
    temp->data = 2;
    temp->link = NULL;
    A = temp;

    temp = new Node();
    temp->data = 4;
    temp->link = NULL;


    Node* temp1 = A;

    while (temp1->link != NULL) {

    }


    return 0;
}