+ 2
Brute Force Algorithm
what do you think about brute force algorithm in c++?
3 RĂ©ponses
+ 1
A brute force algorithm is a very straightforward way of solving a particular problem, such as sorting a data set.
Brute force algorithms are good starting points in developing more efficient algorithms, such as selection sort compared to quicksort. Although both of these algorithms accomplish the same goal, the two are completely different in terms of how they accomplish said goal.
Here is a list of some pros and cons of Brute force algorithms:
Pros-
âąEasy to code and understand
âąSolves a problem; generates a solution
âąStepping stone in the development of better algorithms.
Cons-
âąFairly inefficient, in both time complexity and space
âąNot very suitable in real world applications.
A great read for more on algorithms would be Anany Levitin's Introduction to Design and Analysis of Algorithms. It can be complex in some areas but it is a good start!
0
What's brute force algorithm?
0
time consuming and inefficient and probably a good reason to appreciate other algorithms.