Блог пользователя HappyLittlePony

Автор HappyLittlePony, 9 лет назад, По-английски

Simple question:How to write easy-to-implement brute force solutions? Which techniques do you use (like using next_permutation)?

Thank you for all answers:-)

  • Проголосовать: нравится
  • +5
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится -13 Проголосовать: не нравится

In this case : B r u t e f o r c e

Thank do not need ((:

»
9 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

For brute-force I use recursion 90% of the time. If you are brute-forcing something which state can be described by a permutation, then sure — go with next_permutation.

But in general brute-force is not algorithm but an approach so it's hard to give you any real advice that will always work. In general I use backtracking with recursion and that's the most standard approach.