What is the difference between heuristics and metaheuristics?

后端 未结 3 832
一个人的身影
一个人的身影 2021-01-30 02:19

After some research about algorithms I found two terms which confuses me. I\'ve read at least 20 papers and yet, there aren\'t any clear definition about either. I hope someone

3条回答
  •  粉色の甜心
    2021-01-30 03:20

    In order to give a proper quotation, relative to Alejandro answer:

    « A metaheuristic is a high-level problem-independent algorithmic framework that provides a set of guidelines or strategies to develop heuristic optimization algorithms [...] A problem-specific implementation of a heuristic optimization algorithm according to the guidelines expressed in a metaheuristic framework is also referred to as a metaheuristic » (Sörensen, Glover on http://scholarpedia.org/article/Metaheuristics)

    To be fully complete. We should distinguish between exact, approximate and heuristics algorithms. An exact algorithm finds an exact solution. An approximate algorithm should find an approximate solution, within an acceptable time, as well as indicate its discrepancy range with the supposed optimal solution. An heuristics simply find a good-enough solution, within an acceptable time.

    By the way, Alejandro quicksort's example does not appear fully adequate for two or three different reasons.

    1. In fact, heuristics and metaheuristics are part of optimization's field. The problem they try to tackle is therefore of searching an optimum, not of sorting.
    2. Heuristics are generally use when the problems you want to tackle is too complex, in the computational sense - which is not the case of sorting problem.
    3. What was pointed at through the quicksort example, if I understand it well, is the random element. In principle, you can have deterministic heuristics - I never encountered a deterministic metaheuristics, but probably one could code it. It might be a bit "playing with words" but, the random element more properly characterizes "stochastic search" than (meta)heuristics.

提交回复
热议问题