Is a preference for brute force solutions a bad sign? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T22:23:47Z http://stackoverflow.com/feeds/question/418465 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign 10 Is a preference for brute force solutions a bad sign? Skilldrick 2009-01-06T22:37:16Z 2009-06-26T04:48:38Z <p>This is my first post here so be easy on me! </p> <p>I'm a beginner C++ programmer, and to stretch my mind I've been trying some of the problems on <a href="http://projecteuler.net/" rel="nofollow">projecteuler.net</a>. Despite an interest in maths at school, I've found myself automatically going for brute force solutions to the problems, rather than looking for something streamlined or elegant. </p> <p>Does this sound like a bad mindset to have? I feel a bit guilty doing it like this, but maybe quick and dirty is OK some of the time...</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418472#418472 2 Answer by Erik for Is a preference for brute force solutions a bad sign? Erik 2009-01-06T22:40:17Z 2009-01-06T22:40:17Z <p>I would say that no, it's not a bad sign. In fact you're doing yourself a favor by trending away from premature optimizations, which is definitely a Good Thing.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418474#418474 1 Answer by Arthur Thomas for Is a preference for brute force solutions a bad sign? Arthur Thomas 2009-01-06T22:42:17Z 2009-01-06T22:42:17Z <p>learning is a brute force process. I wouldn't say its bad. In trying to do something that way you may notice a pattern. I think as long as you are thinking about something and trying to find solutions you will learn. There are few people who just jump to the most elegant or efficient solutions.</p> <p>It would be hard to convince me that people that are trying to learn could ever be called bad. Except maybe an evil scientist :P</p> <p>good luck.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418477#418477 4 Answer by John W for Is a preference for brute force solutions a bad sign? John W 2009-01-06T22:43:01Z 2009-01-06T22:43:01Z <p>No, this isn't a bad thing. I've had solutions that were so elegant they were wrong.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418479#418479 3 Answer by Robert C. Barth for Is a preference for brute force solutions a bad sign? Robert C. Barth 2009-01-06T22:43:17Z 2009-01-06T22:43:17Z <p>The elegant solutions weren't created spontaneously; they were derived from the brute-force solutions when more speed or less memory consumption were required from the current solution.</p> <p>So no, it's not. It's how the elegant solutions came into being.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418490#418490 1 Answer by Mehrdad Afshari for Is a preference for brute force solutions a bad sign? Mehrdad Afshari 2009-01-06T22:45:55Z 2009-01-06T22:45:55Z <p>Ken Thompson: "When in doubt, use brute force"</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418494#418494 1 Answer by small_duck for Is a preference for brute force solutions a bad sign? small_duck 2009-01-06T22:46:20Z 2009-01-06T22:46:20Z <p>Do you fit inside the 1 minute runtime rule for the problems? If yes, then your "brute force" solution fulfils all the requirements, and that's actually a very good sign that you can quickly come up with something that works!</p> <p>These kinds of problems encourage micro-optimisation and very clever algorithms, but in general a very readable straightforward implementation will be much easier to maintain, and will be favoured in the business world.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418495#418495 14 Answer by Simucal for Is a preference for brute force solutions a bad sign? Simucal 2009-01-06T22:46:55Z 2009-01-06T22:56:44Z <p>I think you should look at what your end goal is and what your constraints are.</p> <p>Sometimes a bruteforce method can solve a problem in 50ms trying out every combination of solutions and a "clever" solution can solve it in 10ms. At that point, the less clever but easier to understand solution trumps the clever solution.</p> <p>However, there are some problems where brute forcing will not only be inelegant but simply won't work. There are many problems where if you attempt to naively brute force them it will take a significant amount of time to solve them. So obviously, these types of problems need a more elegant approach.</p> <p>So ask yourself, why you are attempting these Project Euler problems? Are you doing it to learn? Then maybe trying a clever solution would be in your best interest but only after you have initially tried a brute force solution to help get a grasp of the problem. </p> <p>When doing the Python Challenge problems I try to do it the most succinct way I can, pushing the limits of my abilities. After I solve it I then review other peoples answers and take mental notes of people who were more clever than myself and what they did. Some people will make special use of a data structure I hadn't thought of that is more suited to the task or they will have little mathematical tricks they use to make their algorithm more efficient. In the end I try to absorb as much of their cleverness as I can and make it show the next time I'm presented with a problem of a similar nature.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418498#418498 7 Answer by Greg Hewgill for Is a preference for brute force solutions a bad sign? Greg Hewgill 2009-01-06T22:47:36Z 2009-01-06T22:47:36Z <p>As a beginner programmer, you will be spending more of your mental energy figuring out how to actually implement things in C++, rather than spending energy on finding a clever solution to each problem. This is fine, because it gives you the opportunity to explore different areas of C++ while working on a range of various kinds of problems.</p> <p>When you become proficient in C++ and you don't have to think about how to do every little thing, <em>then</em> you will be able to spend more time inventing non-brute-force solutions.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418500#418500 1 Answer by John MacIntyre for Is a preference for brute force solutions a bad sign? John MacIntyre 2009-01-06T22:48:53Z 2009-01-06T22:48:53Z <p>I've sort of gone through this evolution:</p> <ol> <li>Get it to compile</li> <li>Make it work as expected</li> <li>Figure out one solution that works</li> <li>Figure out one good solution</li> <li>Figure out multiple solutions, and find the best</li> <li>Figure out multiple solutions, and find the best for this situation</li> <li>?? haven't gotten there yet</li> </ol> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418502#418502 0 Answer by le dorfier for Is a preference for brute force solutions a bad sign? le dorfier 2009-01-06T22:49:18Z 2009-01-06T22:49:18Z <p>If it happens to be a situation where "brute force" => "simple" and "elegant" => "complex", then brute force wins. And this is very often true.</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418516#418516 0 Answer by Mitch Wheat for Is a preference for brute force solutions a bad sign? Mitch Wheat 2009-01-06T22:53:35Z 2009-01-06T22:53:35Z <p>Contrary to most of the other answers, I would say "Yes and No"! The early Project Euler problems can be solved quite easily by brute force approaches. Many of the later ones require that some analysis is done in order to make a narrowed brute-force search feasible. For example, problem 18 can be solved by a brute force approach, while the larger problem of the same type (Problem 67) cannot (as stated in the problem).</p> <blockquote> <p>The intended audience include students for whom the basic curriculum is not feeding their hunger to learn, adults whose background was not primarily mathematics but had an interest in things mathematical, and professionals who want to keep their problem solving and mathematics on the edge.</p> </blockquote> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418525#418525 0 Answer by Austin Salonen for Is a preference for brute force solutions a bad sign? Austin Salonen 2009-01-06T22:58:08Z 2009-01-06T22:58:08Z <p>It's definitely not a bad sign to trend to brute force, especially as a beginner because you may not know any better. Especially with Project Euler, it is a bad sign to implement a brute force method and not review the comments to learn a more efficient method.</p> <p>I often end up in the same boat you're in and that's actually why I started doing P.E. problems -- I was implementing a lot of brute force approaches and wanted to expose myself to more elegant solutions...</p> http://stackoverflow.com/questions/418465/is-a-preference-for-brute-force-solutions-a-bad-sign/418566#418566 1 Answer by Chris Nava for Is a preference for brute force solutions a bad sign? Chris Nava 2009-01-06T23:09:48Z 2009-01-06T23:09:48Z <p>Not at all. Get the problem solved correctly and completely then make it more performant or elegant as necessary.</p> <p>That's not to say you should ignore obvious performance improvements... Just don't focus on them until you understand the problem better.</p>