0
Can anyone explain me linked list implementation in c++
Implementation of linked list
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.