I have become pretty fluent in a few different languages now, but I seem to have a hard time actually figuring out the best way to go about solving particular problems. What are some ways to go about getting better at the actual problem solving of programming.
|
|
Experience. Solving something completely new is hard. The best way to solve problems is to try and find a problem that you've solved before, and that is similar, and adapt you solution to the new problem. So until you have experience with many different kinds of problems, it's hard to solve new problems that you come across. Visiting sites like this and reading questions and theirs answers are a great way of learning how others solved problems that they encountered. |
|||
|
|
|
Basically, "just do it". When you have to make a choice, just make any choice (except flipping a coin). Once you have something that works, then sit back and scratch your head about what you did wrong and how to do it better. If you have absolutely no clue how to do even that, just solve a part of the problem completely and move on. I suggest checking out this book. They aren't the best kid on the block, though they want us to think they are...but they did well with Basecamp. |
|||
|
|
|
When all you have is a hammer, everything begins to look like a nail. So, make sure you're well versed in algorithms and data structures. When you study them, think hard about what sort of uses a particular algorithm is good for. |
|||
|
If you must solve it on your own, try one of these others:
|
|||
|
|
|
The book is a set of heuristics to go through when solving a problem. Read about it on Wikipedia. Buy it on Amazon. |
|||
|
|
|
By solving actual problems. Practice makes perfect. If you have time to become fluent in multiple languages, my guess is that you haven't spent much time doing any actual work. If you have a job, it might be time for a new one. If you're still in school, do you have any interest in starting a project for yourself or contributing to one that you use regularly? It might help to know what kinds of problems you're having difficulty solving. |
|||
|
|
|
Go find an open source or free project you can get excited about and contribute. I learned a lot by signing up to code for my favorite video game modification. |
|||
|
|
|
One way that seems to work for a lot of people is to pick use a book like Programming Challenges as a guide, and focus on solving problems of a particular type. For example if you're weak in an area like graph problems or dynamic programming, find a set of problems on an online judge and work through them. You'll start to recognize patterns and be able to classify problems. |
|||
|
|
|
|||
|
|
|
Study Algorithms! Search and get a hold on as many examples, books on the subject programming or otherwise, etc. Problem solving skills can also be improved by playing tactical games. These made me Enjoy problem solving and become better (not necessarily good) at problem solving: |
|||
|
|
|
I like this general method:
most importantly, on every step, learn |
|||
|
|
|
The best way is probably to learn form a master if that's an option. Especially if you can find someone familiar with the problems your addressing. Generally the more tools we have at hand the more options we have for tackling a problem. I agree that's important to always code and to always deliver something that works (however inelegant it is). But I think we need to increase our skills/knowledge in many directions:
You can get a lot of skill through on the job just-in-time-learning, but I usually have a pet subject at any time that I'm trying to get a deeper understanding of, typically this means getting the book and reading it cover to cover. |
|||
|
|
|
Work your way through Project Euler, and look at other people's solutions to the problems. Almost every problem will have been solved in a way that wouldn't have occurred to you, and usually with greater efficiency. |
|||
|
|
|
I think that there is a lot more than raw experience involved in becoming a good problem solver - because I've seen poor problem solvers with lots of experience. Here are a few tips but you can find many more around the web.
|
|||
|
|
|
Here some tools that I've used in the past to help me understand a particular problem and its solution. I don't always use them today, but they helped me to learn how to think about breaking down a problem and coming up with a solution.
The best advice I can give you if you try these is to follow the "rules" until you really have a good grasp of what is going on. Once you feel like you have a better understanding of what they provide, you can use them or not, or modify how you use them to keep only what is helpful and let the other stuff go. |
|||
|
|
