Week 3 Discussion Forum

Importance of Brute Force

Importance of Brute Force

by Tanzina Rahman Mona (192-15-2812) -
Number of replies: 1

Brute force is a straightforward approach to problem solving, usually directly based on the problem’s statement and definitions of the concepts involved.Though rarely a source of clever or efficient algorithms,the brute-force approach should not be overlooked as an important algorithm design strategy. Unlike some of the other strategies, brute force is applicable to a very wide variety of problems.

For some important problems ( sorting, searching, string matching), the brute-force approach yields reasonable algorithms of at least some practical value with no limitation on instance size

Even if too inefficient in general, a brute-force algorithm can still be useful for solving small-size instances of a problem. A brute-force algorithm can serve an important theoretical or educational purpose.


117 words

In reply to Tanzina Rahman Mona (192-15-2812)

Re: Importance of Brute Force

by MD.Munim Shariair Galib -

Brute force is a straightforward approach to problem solving, usually directly based on the problem’s statement and definitions of the concepts involved.Though rarely a source of clever or efficient algorithms,the brute-force approach should not be overlooked as an important algorithm design strategy. Unlike some of the other strategies, brute force is applicable to a very wide variety of problems.

Even if too inefficient in general, a brute-force algorithm can still be useful for solving small-size instances of a problem. A brute-force algorithm can serve an important theoretical or educational purpose.



92 words