Informed search algorithms use problem-specific heuristics to improve search efficiency over uninformed methods. The most common informed methods are best-first search, A* search, and memory-bounded variants like RBFS and SMA*. A* is optimal if the heuristic is admissible for tree searches or consistent for graph searches. Heuristics provide an estimate of the remaining cost to the goal and can significantly speed up search. Common techniques for generating heuristics include Manhattan distance.