Brute force , Need help - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T04:26:15Z http://stackoverflow.com/feeds/question/347501 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/347501/brute-force-need-help 3 Brute force , Need help Sara 2008-12-07T11:47:36Z 2008-12-09T20:47:40Z <p>Hi guys I'm a junior student and I had a course called The Design and Analysis of Algorithms,The course is cool but the instructor is not any way, I dont understand the brute force and how to count the number of operations and how to count the time complexity(worst,best,avg), I tried to search for it on the net but each time I end with the big-o notation and the divide and conquer which i dont want. If any of you guys can download the instructor slide from this link and see what I'm talking about .... </p> <p><a href="http://www.sy-stu.com/stu/PublicFiles/StdLibrary/L_15_Design_and_analysis_of_Algorithms_DA_Algorithms_04.ppt" rel="nofollow">the slide</a></p> <p>I really need your help on this , and I promise i will do my best</p> http://stackoverflow.com/questions/347501/brute-force-need-help/347514#347514 6 Answer by JesperE for Brute force , Need help JesperE 2008-12-07T12:14:27Z 2008-12-07T12:14:27Z <p>Brute force is a class of "algorithms" (or plainly "way of doing things") where you don't try to be clever, just dumb search. Example: if you want to look up a phone number in the phone book, the clever solution would be to observe that all entries are sorted by last name, and directly look up the correct letter, etc. The brute force solution would be to read the phone book from the start, checking every single name and stopping when the right name is found.</p> http://stackoverflow.com/questions/347501/brute-force-need-help/347519#347519 1 Answer by Mehrdad Afshari for Brute force , Need help Mehrdad Afshari 2008-12-07T12:20:50Z 2008-12-07T12:20:50Z <p>Brute forcing is the task of testing all possible configurations of a specific problem and testing if one of them matches the properties of a solution.</p> <p>Consider a 4 digit pin code. If you lose it, you can test all possible codes from 0000 to 9999 to find the correct code. This is a kind of brute forcing.</p> <p>The same thing can be used to solve some computer science problems such as 0/1 knapsack problem in which, a thief wants to find out what to steal. Every object has value v[i] and weight w[i]. He or she wants to find out the combination that provides maximum value and has less weight than "W". A possible solution to this problem is to consider all combinations of objects and find the value and the weight of each combination and then select the optimal one.</p> http://stackoverflow.com/questions/347501/brute-force-need-help/347533#347533 3 Answer by OJ for Brute force , Need help OJ 2008-12-07T12:38:09Z 2008-12-07T12:38:09Z <p>You might get a bit out of watching the first few lectures of <a href="http://www.catonmat.net/blog/category/introduction-to-algorithms/" rel="nofollow">this series on algorithms</a>.</p> http://stackoverflow.com/questions/347501/brute-force-need-help/347599#347599 0 Answer by George Stocker for Brute force , Need help George Stocker 2008-12-07T13:57:15Z 2008-12-07T13:57:15Z <blockquote> <p>Can i have an example on the selection sort and bubble sort how to count the time complixity and how to count the operations and what is the traveling sales man problem</p> </blockquote> <p>The Selection sort algorithm <a href="http://en.wikipedia.org/wiki/Selection_sort" rel="nofollow">is available in pseudocde from Wikipedia</a>, as is the <a href="http://en.wikipedia.org/wiki/Bubble_sort" rel="nofollow">Bubble Sort</a>. The time complexity is <a href="http://www.daniweb.com/forums/thread13488.html" rel="nofollow">computed by the number of times it</a> takes the algorithm to run through until it gets the right answer.</p> <p>The <a href="http://en.wikipedia.org/wiki/Travelling_Salesman_problem" rel="nofollow">Traveling Salesman problem</a> is a classic problem in computer science that interrelates the algorithm's execution time with figuring out the answer to the question.</p> <p>To wit: </p> <blockquote> <p>The problem is: given a number of cities and the costs of travelling from any city to any other city, what is the least-cost round-trip route that visits each city exactly once and then returns to the starting city?</p> </blockquote> <p>If I try to use an algorithm to bruteforce the best route, it'll take <i>a really long time</i> on any route bigger than the simplest route. That's where Big(O) comes in, it shows me how each algorithm I'd choose would affect how long it'd take me to get the answer.</p> <p>I posted this answer based off of the comments you left for other answers. For what it's worth, Big-O notation is exactly what you want, it's the indicator of how long your algorithm will take to execute.</p>