I got a list of items to program in Visual C++.
I could write a linked list from scratch but I want to do something special and best. I am thinking about a hash table.
What is best, linked lists or hash tables?
I am not too experienced with the standard template library (STL) in C++. I am more experienced with Visual C++ and the Microsoft Foundation Class Library (MFC). I have heard some good things about STL. Is it ture that there is a ready-to-use linked list? Is there also a hash table?
What advantages would there be to writing one from scratch?
If I do go with MFC, what advantages are there?