What is the difference between heuristics and metaheuristics?

别来无恙 提交于 2020-01-30 13:50:18

问题


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 can help me tell the difference between heuristics and metaheuristics algorithms. And if possible, add the source of it.

ps: I already know what the meaning is of the words, but I don't know what the exact difference is between them in computer science.

thanks in advance


回答1:


You could think of a heuristic like an approximate (not approximation) solution to a problem. The difference between approximate and approximation is that the first is about getting a good guess of the solution of a problem, but that you don't really know how good it is. The second is about getting a solution for which you can prove how close it is to the optimal solution.

So, heuristics are often problem-dependent, that is, you define an heuristic for a given problem. Metaheuristics are problem-independent techniques that can be applied to a broad range of problems. An heuristic is, for example, choosing a random element for pivoting in Quicksort. A metaheuristic knows nothing about the problem it will be applied, it can treat functions as black boxes.

You could say that a heuristic exploits problem-dependent information to find a 'good enough' solution to a specific problem, while metaheuristics are, like design patterns, general algorithmic ideas that can be applied to a broad range of problems.




回答2:


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.



回答3:


For a detailed explanation, see:

Sörensen, K. (2015). Metaheuristics—the metaphor exposed. International Transactions in Operational Research, 22(1), 3-18.

A metaheuristic is a high-level problem-independent algorithmic framework that provides a set of guidelines or strategies to develop heuristic optimization algorithms. The term is also used to refer to a problem-specific implementation of a heuristic optimization algorithm according to the guidelines expressed in such a framework (Sörensen, 2015).

The heuristics are the guidelines, metaheurstics is the framework that uses those.



来源:https://stackoverflow.com/questions/10445700/what-is-the-difference-between-heuristics-and-metaheuristics

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!