Search Strategies Lecture Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers key concepts from the lecture on uninformed and informed search strategies, including specific algorithms, complexity properties, and heuristics.

Last updated 12:34 AM on 8/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

Uninformed Search Strategies

Search algorithms that only use information provided by the graph itself, such as breadth first search and uniform cost search.

2
New cards

Informed Search Strategies

Search algorithms that use problem-specific knowledge, such as a heuristic, to guide the search toward the goal state.

3
New cards

Depth First Search (DFS)

A search strategy where the frontier is implemented as a stack and the freshly generated nodes are explored first.

4
New cards

Heuristic (h(n)h(n))

A function that estimates how close a state is to the goal, often described as a 'rule of thumb' or the cost of a solution to a relaxed problem.

5
New cards

Greedy Search

An informed search strategy that uses a priority queue to prioritize the node with the lowest heuristic value (h(n)h(n)).

6
New cards

Complete

A property of a search algorithm that guarantees it will find a solution if one exists.

7
New cards

Admissible

A property of a search algorithm that guarantees it will find an optimal solution, meaning the shortest path from the start state to the goal state.

8
New cards

Manhattan Distance

A heuristic function calculated by summing the differences of the coordinates of two points.

9
New cards

Euclidean Distance

A heuristic function that calculates the straight-line distance between two points.

10
New cards

Space Complexity of DFS

A linear complexity that depends on the branching factor (bb) and the maximum depth (mm) of the search tree, typically denoted as O(b×m)O(b \times m).

11
New cards

Uniform Cost Search (UCS)

An uninformed search strategy that is both complete and optimal, prioritizing the lowest path cost (g(n)g(n)).

12
New cards

Frontier

The set of newly generated states or nodes that are waiting to be explored by the search algorithm.