07 April, 2015

Data Stuctures : Implementation of Linked Lists using C++ (All Common Operations)

Linked Lists can get tricky sometimes and it took me some time to figure it out.

I have provided some of the common implementations of linked lists in the program given below and in no way is it a complete list!!
I have demonstrated
  • Insert and delete at head
  • Insert and delete at last
  • Insert and delete at a particular position
  • Reverse elements Iteratively and recursively (both)


If you have not heard about linked lists, you might find these links relevant


I will be shortly posting the some of the common operations using STL, which makes our life much easier.


IF you liked this, stayed tuned for more.

And Happy coding!

No comments:

Post a Comment