Skip to content

Instantly share code, notes, and snippets.

@charlierm
Last active September 10, 2023 19:42
Show Gist options
  • Star 50 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save charlierm/5691020 to your computer and use it in GitHub Desktop.
Save charlierm/5691020 to your computer and use it in GitHub Desktop.
Linked list written in c++
#include <iostream>
#include <cstdlib>
class Node
{
public:
Node* next;
int data;
};
using namespace std;
class LinkedList
{
public:
int length;
Node* head;
LinkedList();
~LinkedList();
void add(int data);
void print();
};
LinkedList::LinkedList(){
this->length = 0;
this->head = NULL;
}
LinkedList::~LinkedList(){
std::cout << "LIST DELETED";
}
void LinkedList::add(int data){
Node* node = new Node();
node->data = data;
node->next = this->head;
this->head = node;
this->length++;
}
void LinkedList::print(){
Node* head = this->head;
int i = 1;
while(head){
std::cout << i << ": " << head->data << std::endl;
head = head->next;
i++;
}
}
int main(int argc, char const *argv[])
{
LinkedList* list = new LinkedList();
for (int i = 0; i < 100; ++i)
{
list->add(rand() % 100);
}
list->print();
std::cout << "List Length: " << list->length << std::endl;
delete list;
return 0;
}
@enriquemesa8080
Copy link

Very good your source code. I will help me to understand a bit more how works a list in C++

@becurrie
Copy link

becurrie commented Jan 8, 2018

This is really useful, do you have any useful resources you could point me to that would help shed some light on linked lists some more? I'm just starting linked lists in my Data Structures course and would appreciate any help you could provide! Great source code.

@sushlala
Copy link

Does your destructor have to loop through each node and delete it?

@Kefta
Copy link

Kefta commented Feb 13, 2018

@SUSHSADA Yes, that leaves no data belonging to the list hanging around

@ShiraShaf
Copy link

Why you didn't implement in your destructor loop that delete all the nodes ? There is no memory problem in your currently implementation?

@cyberninjaryu
Copy link

can you put some comments?

@Swordo
Copy link

Swordo commented Jun 7, 2018

swordo95@icloud.com This is my e-mail guys I need someone who can change ideas and try to develop coding skills with me. Please contact with me.

@mihretabn
Copy link

can you help me to develop a program to store soccer tournament full information like this

Copy link

ghost commented Jun 19, 2018

stop using old c++ and reimplement it again with cpp11… lol the code will not run

@wags-1314
Copy link

changing to the node class to struct would be nice

@DiaaAj
Copy link

DiaaAj commented Sep 8, 2018

I think it would be better if the class was replaced with a struct as all the members of the class are public.

@TheHolyJoker
Copy link

I compiled it using: g++ linked_list.cpp -o linked_list
Then run valgrind to check for memory leaks using: valgrind --leak-check=yes ./linked_list
and got:
...
==7352== LEAK SUMMARY:
==7352== definitely lost: 16 bytes in 1 blocks
==7352== indirectly lost: 1,584 bytes in 99 blocks
==7352== possibly lost: 0 bytes in 0 blocks
==7352== still reachable: 0 bytes in 0 blocks
==7352== suppressed: 0 bytes in 0 blocks
==7352==
...

Did I do something wrong? Because It seems to me that there are memory leaks, and none of the nodes where deleted.

@gnsalok
Copy link

gnsalok commented Oct 16, 2018

such a good code in c++

Copy link

ghost commented Oct 28, 2018

The most beautiful code

@mrpgraae
Copy link

@TheHolyJoker you did not do something wrong, this code leaks memory.
To fix it, we need to delete all the allocated nodes in the destructor.
Something like this:

LinkedList::~LinkedList() {
    Node* next = head;
    Node* cur = NULL;
    while (next != NULL) {
        cur = next;
        next = next->next;
        delete cur;
    }
}

@razikusman
Copy link

How can we create linked list without classes

@Elyorbe
Copy link

Elyorbe commented Feb 16, 2019

How can we create linked list without classes

Using struct
struct Node{ int data; Node *next; }

@AfaqNasir
Copy link

Good information about the link list

@CedricVanhaverbeke
Copy link

Don't print your linkedList with print(). Add a friend operator<<.
Like so :

//declaration
friend ostream & operator<<(ostream & os, const LinkedList & l);

// implementation
ostream & operator<<(ostream & os, const LinkedList & l){
    Node* head = l.head;
    int i = 1;
    while(head->next){
        os << head->data << endl;
        head = head->next;
        i++;
    }
    return os;
}

Look at the while(head->next). Your implementation also prints the last element, which is NULL, so it prints rubbish.

@ahpohl
Copy link

ahpohl commented Apr 3, 2019

Here is how to append data to the end of the list:

void LinkedList::append(int data)
{
    Node* node = this->head;

    while (node->next != NULL)
    {
        node = node->next;
    }

    node->next = new Node();
    node->next->data = data;
    node->next->next = NULL;
    this->length++;
}

However, the method gets quite slow when appending 100000+ items.
Anyone has an idea how to speed up the method?
How to avoid looping through the entire list just to find address of the end node?

@dhtzl
Copy link

dhtzl commented May 11, 2019

herereeee...

@Amadeeus
Copy link

Amadeeus commented May 25, 2019

Here is how to append data to the end of the list:

void LinkedList::append(int data)
{
    Node* node = this->head;

    while (node->next != NULL)
    {
        node = node->next;
    }

    node->next = new Node();
    node->next->data = data;
    node->next->next = NULL;
    this->length++;
}

However, the method gets quite slow when appending 100000+ items.
Anyone has an idea how to speed up the method?
How to avoid looping through the entire list just to find address of the end node?

Does this actually work on a newly created LinkedList object? The problem I am experiencing is that node will already be NULL such that trying to evaluate node->next in the while-loop condition will cause a segmentation fault.

I would suggest this modification such that it is also checked if the list is empty before appending a new node:

void LinkedList::append(int data) {
    Node* node = this->head;
    if (node == nullptr) {  // Check if list is empty
        node = new Node;
        this->head = node;
    } else {
        while (node->next != nullptr) {
            node = node->next;
        }
        node->next = new Node;
        node = node->next;
    }
    node->data = data;
    node->next = nullptr;
    this->length++;
}

Also regarding your other problem of avoiding to cycle through the whole list to append a new node, you could simply add a pointer to the end node and update it everytime you append a node. Similarly, in the code above the head pointer is updated every time a new node is prepended to the list.
Feel free to check out my implementation which is very similar to this one:
https://gist.github.com/Amadeeus/1c6dc6f5ea3d7b84bb979f7482b70342

@aleksejalex
Copy link

thank you! Very useful

@henrany
Copy link

henrany commented Oct 3, 2019

how do you create another list different from the already created using the same class

@pkumar171099
Copy link

Can anyone explain me, if we create LinkedtList object then head (wiyh the help of default contructor ) will become null and data will be lost.

@pkumar171099
Copy link

/*
I am getting error : In member function 'void linkedlist::add(std::string&)':
error: 'h' was not declared in this scope
can anyone explain me why i am getting this error message
*/
#include
#include
using namespace std;

//making class node
class node{ 
public:
friend class linkedlist;
node(){
    data = "0";
    next = NULL;
}
string data;
node* next;
};
//making class to linkedlist 
class linkedlist{

public:
linkedlist(){
    node* h = NULL;
}
//function to add data node in existing linked list
void add(string& str){
    node* newnode = new node;
    newnode->data = str;
    if(h !=NULL){
        h->next = newnode;
    }
    else{
        newnode->next = h->next;
        h->newnode;
    }
}
};

int main()
{
linkedlist l1;
string name;

//loop to enter data from user
while(true){
    cout<<"type \"q\" to exit or type name you want to add: ";
    cin>> name;
    if(name!="q"){
        l1.add(name);
    }
    else break;
}
return 0;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment