Chapter 29 Flashcards

1
Q

What is path finding algorithm

A

Algorithm that uses on graph for finding shortest path

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is fully connected graph

A

Each vertex is connected to its possible vertex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is breadth-first search

A

Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root and explores the neighbor nodes first, before moving to the next level neighbors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are adjacent node

A

The node which are directly connected to a node

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is adjancy list

A

It helps to find neighbors of neighbors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is wave front

A

A hypothetical circle of first level adjacent nodes is called first wave front.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is depth-first search

A

Depth First Search (DFS) The DFS algorithm is a recursive algorithm that uses the idea of backtracking but it can also non-recursive. Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. One starts at the root and explores as far as possible along each branch before backtracking.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is meaning of traversing a graph

A

Traversing a graph means visiting every node in graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is bag

A

Generic graph traversal algorithm stores a set of candidates edges in data structure called bag. It is data structure like stack and queue.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly