Reputation: 255
I'm learning data structures since last 2 months.
Have got good at basics of each but still find myself unable to apply it to any real world problem.
Whenever I come across any problem, my mind still goes in old mode of creating array or list of objects and then coding solution. (like older days when I was switching to OOP from procedure programming. But now I can see everything as object :))
I tried to search on net and went through few books also. But each book is filed with basic algorithms. (ex. creating/inserting/deleting/finding element in stack, queue, tree etc... and their Big O evaluations)
I'm looking for actual code implementations of some real problems.
Upvotes: 0
Views: 1509
Reputation: 1081
Here are some random examples of applications of a few data structures (not all of them extremely realistic and/or practical, I must admit), there are of course many more but this should give some indications:
Upvotes: 1