Uninformed and informed search algorithms are used in artificial intelligence. Uninformed search methods like breadth-first search and depth-first search do not use additional problem knowledge to guide the search. Informed search methods like A* use a heuristic function to estimate the cost to reach the goal, guiding the search towards more promising solutions. The document provides details on various search algorithms, their time and space complexity, and how they traverse the problem space like using open and closed lists.