STL practice problems [closed] - c++

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I have recently gone through the concepts of STL in C++. I want to improve my skills of using STL. I request if someone can direct me to a book or link where I can find sufficient problems where I can learn how to apply STL. If there are solutions with little analysis it would be of even more help.
Thank you so much in advance.

An excellent online resource is cppreference.com. You will occasionally hear about cplusplus.com but that is not reliable and notoriously wrong so I would advise against it.

You can start with easy ones' in Topcoder practice rooms. Most of them could be solved using STL.

Related

Introduction to SQL for C++ programmer [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm a C++ programmer who wants to expand his knowledge into SQL language because I'm dealing with QtSQL module and would like to understand it better.
I would like to find a gentle introduction to SQL language for a C/C++ programmer.
Can you suggest some reading or a particular tutorial?
See this question: https://stackoverflow.com/questions/31982/looking-for-a-good-book-to-learn-sql
the highest rated answer recommends 2 nice books for beginners.
Coming from C++ field doesn't make much difference in this case in my oppinion. Start from basic stuff and you'll be fine!
For a nice web tutorial you can also check this: http://www.w3schools.com/sql/default.asp
COMMENT: You should not ask for recomendations in SO (although judging by your reputation you are aware of the rules). There are already various answers for this question as it is too generic and subjective. Read some books and tutorials and come back with SQL coding questions ;-)

Good sites for basic class design? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am switching java to c++ and there is some fundamental difference that I am missing. If you guys know any good sites that have class design tutorial, please let me know. Stuff such as memory deallocation, things to avoid, etc.. I have also been googling this stuff but I just want more information. Maybe you guys can help. Thanks
Try the class design tutorial found on the CProgramming website.

How helpful is memorizing Clojure.core [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I've used Clojure for about 2 years now (having used scheme/lisp before that).
I'm getting to the point where I feel like I'm not learning more clojure "by osmosis" and am considering using a conscious effort to memorize the function names in Clojure.core
Question:
Has anyone else done this? If so, has it been a significant productivity boost?
I'm afraid that just having a function memorized is not enough to spot the need to use it when it is needed. It is better to learn in context - for example by solving the 4clojure problems and then looking at solutions by users with high scores. Once you have a function in context, then you can memorize it.

Best books/sites/blogs to learn DataStructures and Algorithms as a starting level? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Could you please, can any one tell me the best books/sites/blogs to learn DataStructures and Algorithms as a starting level?
in c++ language.
Thanks in advance.
For learning data structures and algorithms in general I'd recommend The Algorithm Design Manual by Steven Skiena (Google books link).
The definitive book would be Introduction to Algorithms. Try and get a used copy, it's not cheap.
As for sites, the SO tag data-structures has some great stuff in it too. You might want to look at the top questions there.

ORPG Engine Development, structuring the code (C++, 2D) [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I've been working on a game 2d ORPG Engine with a friend of mine, however we're having some troubles organizing and structuring the code.
I could use some pointers, guides, tutorials, etc. on how to keep the code flexible, extendible and maintainable.
Thanks for your time, Xeross
One of my preferred books:
C++ Coding Standards by Herb Sutter and Andrei Alexandrescu,
I'll just mark this as correct as the subject is too vague, my apologies, thanks for everyone replying though :)