{{short description|Optimization algorithm}} {{hatnote|This article is about the mathematical algorithm. For other meanings see [[Hillclimbing]] or [[Hillclimbing (disambiguation)]]}} {{Refimprove|date=April 2017}}
[[Image:hill climb.png|thumb|upright=1.4|A surface with only one maximum. Hill-climbing techniques are well-suited for optimizing over such surfaces, and will converge to the global maximum.]] <span lang="de-formal" dir="ltr">In</span> [[numerical analysis]], '''hill climbing''' is a [[Optimization (mathematics)|mathematical optimization]] technique which belongs to the family of [[Local search (optimization)|local search]].
It is an [[iterative algorithm]] that starts with an arbitrary solution to a problem, then attempts to find a better solution by making an [[incremental heuristic search|incremental]] change to the solution. If the change produces a better solution, another incremental change is made to the new solution, and so on until no further improvements can be found.
For example, hill climbing can be applied to the [[travelling salesman problem]]. It is easy to find an initial solution that visits all the cities but will likely be very poor compared to the optimal solution. The algorithm starts with such a solution and makes small improvements to it, such as switching the order in which two cities are visited. Eventually, a much shorter route is likely to be obtained.
Hill climbing finds optimal solutions for [[convex optimization|convex]] problems – for other problems it will find only [[local optimum|local optima]] (solutions that cannot be improved upon by any neighboring configurations), which are not necessarily the best possible solution (the [[global optimum]]) out of all possible solutions (the [[Candidate solution|search space]]).
Examples of algorithms that solve [[Convex optimization|convex problems]] by hill-climbing include the [[simplex algorithm]] for [[linear programming]] and [[binary search]].<ref>{{cite book |last=Skiena |first=Steven |author-link=Steven Skiena |title = The Algorithm Design Manual |publisher=[[Springer Science+Business Media]] |edition=2nd |year = 2010 |isbn=978-1-849-96720-4}}</ref>{{rp|253}}
To attempt to avoid getting stuck in local optima, one could use restarts (i.e. repeated local search), or more complex schemes based on iterations (like [[iterated local search]]), or on memory (like reactive search optimization and [[tabu search]]), or on memory-less stochastic modifications (like [[simulated annealing]]).
The relative simplicity of the algorithm makes it a popular first choice amongst optimizing algorithms. It is used widely in [[artificial intelligence]], for reaching a goal state from a starting node. Different choices for next [[Vertex (graph theory)|nodes]] and starting nodes are used in related algorithms. Although more advanced algorithms such as [[simulated annealing]] or [[tabu search]] may give better results, in some situations hill climbing works just as well. Hill climbing can often produce a better result than other algorithms when the amount of time available to perform a search is limited, such as with real-time systems, so long as a small number of increments typically converges on a good solution (the optimal solution or a close approximation). At the other extreme, [[bubble sort]] can be viewed as a hill climbing algorithm (every adjacent element exchange decreases the number of disordered element pairs), yet this approach is far from efficient for even modest N, as the number of exchanges required grows quadratically.
Hill climbing is an [[anytime algorithm]]: it can return a valid solution even if it's interrupted at any time before it ends.
==Mathematical description==
Hill climbing attempts to maximize (or minimize) a target [[function (mathematics)|function]] <math>f(\mathbf{x})</math>, where <math>\mathbf{x}</math> is a vector of continuous and/or discrete values. At each iteration, hill climbing will adjust a single element in <math>\mathbf{x}</math> and determine whether the change improves the value of <math>f(\mathbf{x})</math>. (Note that this differs from [[gradient descent]] methods, which adjust all of the values in <math>\mathbf{x}</math> at each iteration according to the gradient of the hill.) With hill climbing, any change that improves <math>f(\mathbf{x})</math> is accepted, and the process continues until no change can be found to improve the value of <math>f(\mathbf{x})</math>. Then <math>\mathbf{x}</math> is said to be "locally optimal".
In discrete vector spaces, each possible value for <math>\mathbf{x}</math> may be visualized as a [[vertex (graph theory)|vertex]] in a [[Graph (discrete mathematics)|graph]]. Hill climbing will follow the graph from vertex to vertex, always locally increasing (or decreasing) the value of <math>f(\mathbf{x})</math>, until a [[local maximum]] (or [[local minimum]]) <math>x_m</math> is reached.
==Variants==
In '''simple hill climbing''', the first closer node is chosen, whereas in '''steepest ascent hill climbing''' all successors are compared and the closest to the solution is chosen. Both forms fail if there is no closer node, which may happen if there are local maxima in the search space which are not solutions. Steepest ascent hill climbing is similar to [[best-first search]], which tries all possible extensions of the current path instead of only one.<ref>{{FOLDOC|Hill+climbing}}</ref>
'''[[Stochastic hill climbing]]''' does not examine all neighbors before deciding how to move. Rather, it selects a neighbor at random, and decides (based on the amount of improvement in that neighbor) whether to move to that neighbor or to examine another. '''First choice hill climbing''' implements Stochastic hill climbing by randomly generating neighbours until a better neighbour is generated, in which this neighbour is then chosen. This method performs well when states have many possible successors (e.g. thousands).<ref>{{Cite book |last=Russell |first=Stuart J. |title=Artificial intelligence: a modern approach |last2=Norvig |first2=Peter |date=2022 |publisher=Pearson |others=Ming-wei Chang, Jacob Devlin, Anca Dragan, David Forsyth, Ian Goodfellow, Jitendra Malik, Vikash Mansinghka, Judea Pearl, Michael J. Wooldridge |isbn=978-1-292-40117-1 |edition=4th, Global |series=Prentice Hall series in artificial intelligence |location=Boston |pages=131}}</ref>
[[Coordinate descent]] does a [[line search]] along one coordinate direction at the current point in each iteration. Some versions of coordinate descent randomly pick a different coordinate direction each iteration.{{Citation needed|date=August 2025}}
'''Random-restart hill climbing''' is a [[meta-algorithm]] built on top of the hill climbing algorithm. It is also known as '''Shotgun hill climbing'''. It iteratively does hill-climbing, each time with a random initial condition <math>x_0</math>. The best <math>x_m</math> is kept: if a new run of hill climbing produces a better <math>x_m</math> than the stored state, it replaces the stored state.{{Citation needed|date=August 2025}}
==Problems==
===Local maxima=== [[Image:local maximum.png|thumb|260px|A surface with two local maxima. (Only one of them is the global maximum.) If a hill-climber begins in a poor location, it may converge to the lower maximum.]]
Hill climbing will not necessarily find the global maximum, but may instead converge on a [[maxima and minima|local maximum]]. This problem does not occur if the heuristic is convex. However, as many functions are not convex hill climbing may often fail to reach a global maximum. Other local search algorithms try to overcome this problem such as [[stochastic hill climbing]], [[random walk]]s and [[simulated annealing]].
[[File:Hill Climbing with Simulated Annealing.gif|thumb|left|500px|Despite the many local maxima in this graph, the global maximum can still be found using simulated annealing. Unfortunately, the applicability of simulated annealing is problem-specific because it relies on finding ''lucky jumps'' that improve the position. In such extreme examples, hill climbing will most probably produce a local maximum.]] {{clear}}
===Ridges and alleys===
[[Image:ridge.png|thumb|190px|''A ridge'']]
[[Ridge (differential geometry)|Ridges]] are a challenging problem for hill climbers that optimize in continuous spaces. Because hill climbers only adjust one element in the vector at a time, each step will move in an axis-aligned direction. If the target function creates a narrow ridge that ascends in a non-axis-aligned direction (or if the goal is to minimize, a narrow alley that descends in a non-axis-aligned direction), then the hill climber can only ascend the ridge (or descend the alley) by zig-zagging. If the sides of the ridge (or alley) are very steep, then the hill climber may be forced to take very tiny steps as it zig-zags toward a better position. Thus, it may take an unreasonable length of time for it to ascend the ridge (or descend the alley).
By contrast, gradient descent methods can move in any direction that the ridge or alley may ascend or descend. Hence, gradient descent or the [[conjugate gradient method]] is generally preferred over hill climbing when the target function is differentiable. Hill climbers, however, have the advantage of not requiring the target function to be differentiable, so hill climbers may be preferred when the target function is complex.
===Plateau=== Another problem that sometimes occurs with hill climbing is that of a plateau. A plateau is encountered when the search space is flat, or sufficiently flat that the value returned by the target function is indistinguishable from the value returned for nearby regions due to the precision used by the machine to represent its value. In such cases, the hill climber may not be able to determine in which direction it should step, and may wander in a direction that never leads to improvement.
Pseudocode '''algorithm''' Discrete Space Hill Climbing '''is''' currentNode := startNode '''loop do''' L := NEIGHBORS(currentNode) nextEval := −INF nextNode := NULL '''for''' all x in L '''do''' '''if''' EVAL(x) > nextEval '''then''' nextNode := x nextEval := EVAL(x) '''if''' nextEval ≤ EVAL(currentNode) '''then''' // Return current node since no better neighbors exist '''return''' currentNode currentNode := nextNode
'''algorithm''' Continuous Space Hill Climbing '''is''' currentPoint := initialPoint // the zero-magnitude vector is common stepSize := initialStepSizes // a vector of all 1's is common acceleration := someAcceleration // a value such as 1.2 is common candidate[0] := −acceleration candidate[1] := −1 / acceleration candidate[2] := 1 / acceleration candidate[3] := acceleration bestScore := EVAL(currentPoint) '''loop do''' beforeScore := bestScore '''for each''' element i in currentPoint '''do''' beforePoint := currentPoint[i] bestStep := 0 '''for''' j from 0 to 3 '''do''' // try each of 4 candidate locations step := stepSize[i] × candidate[j] currentPoint[i] := beforePoint + step score := EVAL(currentPoint) '''if''' score > bestScore '''then''' bestScore := score bestStep := step '''if''' bestStep is 0 '''then''' currentPoint[i] := beforePoint stepSize[i] := stepSize[i] / acceleration '''else''' currentPoint[i] := beforePoint + bestStep stepSize[i] := bestStep // acceleration '''if''' (bestScore − beforeScore) < epsilon '''then''' '''return''' currentPoint
Contrast [[genetic algorithm]]; [[random optimization]].
==See also== * [[Gradient descent]] * [[Greedy algorithm]] * [[Walrasian auction|Tâtonnement]] * [[Mean-shift]] * [[A* search algorithm]]
==References== *{{Russell Norvig 2003| pages=111–114}}
{{reflist}}
==Further reading== * {{Cite book |author=Lasry, George |year=2018 |title=A Methodology for the Cryptanalysis of Classical Ciphers with Search Metaheuristics |url=https://www.uni-kassel.de/upress/online/OpenAccess/978-3-7376-0458-1.OpenAccess.pdf |publisher=[[Kassel University Press]] |isbn=978-3-7376-0459-8 |ref=none}}
==External links== * {{Wikibooks-inline}}
{{Optimization algorithms|heuristic}}
[[Category:Metaheuristics]] [[Category:Search algorithms]] [[Category:Articles with example pseudocode]]