I have seen majority of web programmers (writing some script with sql to make CRUD applicationg) do not know how to build a business logic in relatively complex situations like, using Stack, or Queue or write recursive algorithm. These programmers have habit of simply searching code on google and paste it, but dont understand which data structure do what and when to use what.
I am trying to conduct a session to train web programmers to improve their knowledge with data structures, e.g. I gave a sample program to count repeatations of the word in given text, one should use Dictionary/Hashtable, but even after guiding them to use Dictionary, they were still not able to do it.
I need sample problem definitions (Sure I can certainly figure out answers, but I dont want anyone to give code here, only problem definitions) that should train them to use Stack, Queue, List, Dictionary etc.
If I give them things like parse and expression, they will have heart attack, so I need simple algorithms to start with, just simple as counting repeatations in the given text.
Please assume only .NET 2.0, so generics is fine, but no Linq etc.