Decision Year 1 Terms Flashcards

1
Q

Algorthim

A

A finite sequence of instructions for solving a problem.

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

Bipartite graph

A

A graph with two sets of nodes such that arcs only connect to nodes from one set to the other.

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

Complete graph, Kn

A

A simple graph such that each of its n nodes is directly connected by an arc to every other node.

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

Connected graph

A

A graph such there is a path between any two nodes of the graph.

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

Cycle

A

A closed trail where only the initial and final nodes are the same.

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

Digraph

A

A graph with directed arcs.

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

Euler’s relationship

A

R + N = A + 2

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

Eulerian graph

A

A connected graph which has a closed trail containing every arc precisely once.

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

Graph

A

A set of points (called nodes or vertices) joined by lines (called arcs or edges).

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

Greedy algorthim

A

An algorithm where the immediately ‘best’ step is made without any concern about the long-term consequences of this choice.

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

Hamiltonian cycle

A

A cycle which passes through every node on a graph.

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

Minimum connector

A

A spanning tree whose arcs have the minimum possible total weight.

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

Network

A

A graph with numbers (called weights) associated with its arcs.

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

Order (of a node)

A

The number of arcs meeting at that node.

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

Order (of an algorithm)

A

A measure of the ‘run-time’ of the algorithm as a function of the size of the problem.

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

Path

A

A trail such that no node is passed more than once.

17
Q

Planar graph

A

A graph which can be drawn in a plane in such a way that arcs only meet at nodes.

18
Q

Semi-Eularian graph

A

A connected graph with a trail which is not closed that contains every arc precisely once.

19
Q

Simple graph

A

A graph without loops or multiple arcs.

20
Q

Spanning tree

A

A subgraph which is a tree connecting all the nodes of the graph.

21
Q

Subgraph of G

A

A graph whose nodes and arcs are all in the graph G.

22
Q

Trail

A

A sequence of arcs such that the end node of one arc is the start node of the next.

23
Q

Travelling salesperson problem

A

A classical problem of finding a Hamiltonian cycle of minimum weight. (In the practical problem, nodes and arcs may be revisited).

24
Q

Tree

A

A connected graph with no cycles.