Can anyone explain me linked list implementation in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can anyone explain me linked list implementation in c++

Implementation of linked list

21st Aug 2019, 3:28 PM
Pola Someshwar
Pola Someshwar - avatar
1 Answer
+ 2
Rather than duplicating effort, I'd like to refer you to some helpful articles that explain linked list data structures and how they can be implemented in c++. The following articles explain them fairly well with examples using c++: - https://www.tutorialspoint.com/cplusplus-program-to-implement-singly-linked-list - https://www.codesdope.com/blog/article/c-linked-lists-in-c-singly-linked-list/ If you want to put your knowledge to the test, you could do the Linked List problems on HackerRank: https://www.hackerrank.com/domains/data-structures?filters%5Bsubdomains%5D%5B%5D=linked-lists Select c++ as your language if that's not the default.
22nd Aug 2019, 2:31 AM
Josh Greig
Josh Greig - avatar