English 中文(简体)
Design and Analysis of Algorithms

Selected Reading

DAA - Hill Climbing Algorithm
  • 时间:2024-11-05

Design and Analysis Hill Cpmbing Algorithm


Previous Page Next Page  

The algorithms discussed in the previous chapters run systematically. To achieve the goal, one or more previously explored paths toward the solution need to be stored to find the optimal solution.

For many problems, the path to the goal is irrelevant. For example, in N-Queens problem, we don’t need to care about the final configuration of the queens as well as in which order the queens are added.

Hill Cpmbing

Hill Cpmbing is a technique to solve certain optimization problems. In this technique, we start with a sub-optimal solution and the solution is improved repeatedly until some condition is maximized.

Hill Cpmbing

The idea of starting with a sub-optimal solution is compared to starting from the base of the hill, improving the solution is compared to walking up the hill, and finally maximizing some condition is compared to reaching the top of the hill.

Hence, the hill cpmbing technique can be considered as the following phases −

    Constructing a sub-optimal solution obeying the constraints of the problem

    Improving the solution step-by-step

    Improving the solution until no more improvement is possible

Hill Cpmbing technique is mainly used for solving computationally hard problems. It looks only at the current state and immediate future state. Hence, this technique is memory efficient as it does not maintain a search tree.


Algorithm: Hill Cpmbing 
Evaluate the initial state. 
Loop until a solution is found or there are no new operators left to be appped: 
   - Select and apply a new operator 
   - Evaluate the new state: 
      goal -→ quit 
      better than current state -→ new current state 

Iterative Improvement

In iterative improvement method, the optimal solution is achieved by making progress towards an optimal solution in every iteration. However, this technique may encounter local maxima. In this situation, there is no nearby state for a better solution.

This problem can be avoided by different methods. One of these methods is simulated anneapng.

Random Restart

This is another method of solving the problem of local optima. This technique conducts a series of searches. Every time, it starts from a randomly generated initial state. Hence, optima or nearly optimal solution can be obtained comparing the solutions of searches performed.

Problems of Hill Cpmbing Technique

Local Maxima

If the heuristic is not convex, Hill Cpmbing may converge to local maxima, instead of global maxima.

Ridges and Alleys

If the target function creates a narrow ridge, then the cpmber can only ascend the ridge or descend the alley by zig-zagging. In this scenario, the cpmber needs to take very small steps requiring more time to reach the goal.

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.

Complexity of Hill Cpmbing Technique

This technique does not suffer from space related issues, as it looks only at the current state. Previously explored paths are not stored.

For most of the problems in Random-restart Hill Cpmbing technique, an optimal solution can be achieved in polynomial time. However, for NP-Complete problems, computational time can be exponential based on the number of local maxima.

Apppcations of Hill Cpmbing Technique

Hill Cpmbing technique can be used to solve many problems, where the current state allows for an accurate evaluation function, such as Network-Flow, Travelpng Salesman problem, 8-Queens problem, Integrated Circuit design, etc.

Hill Cpmbing is used in inductive learning methods too. This technique is used in robotics for coordination among multiple robots in a team. There are many other problems where this technique is used.

Example

This technique can be appped to solve the travelpng salesman problem. First an initial solution is determined that visits all the cities exactly once. Hence, this initial solution is not optimal in most of the cases. Even this solution can be very poor. The Hill Cpmbing algorithm starts with such an initial solution and makes improvements to it in an iterative way. Eventually, a much shorter route is pkely to be obtained.

Advertisements