Definitions Flashcards

1
Q

Efficiency

A

A measure of the run time of the algorithm and in most cases is proportional to the number of operations that must be carried out

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

Size

A

Is a measure of it’s complexity and so in the case of algorithms on graphs is the number of vertices on the graph

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

Order

A

Measure of its efficiency as a function of the size of the problem

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

‘Middle Item Position’ - With N items

A

Odd: 0.5(N+1)
Even: 0.5(N+2)

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

Graph

A

Consists of Points (Vertices or Nodes) which are connected by Lines (Edges or Arcs)

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

Subgraph

A

A graph, each of whose vertices belongs to the main graph and each of whose edges belongs to the main graph

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

Weight

A

A number associated to an edge of a graph
Becomes a weighted graph or network

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

Degree / Valency of a Vertex

A

The number of edges incident to it
A vertex can be odd or even

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

Path

A

A finite sequence of edges, such that the end vertex of one edge in the sequence is the start vertex of the next, and in which no vertex appears more than once

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

Cycle (Circuit)

A

A closed path - The end vertex of the last edge is the start vertex of the first edge

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

Connected

A

Two graphs are connected if there is a path between them
A graph is connected if all it’s vertices are connected

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

Digraph

A

The edges of a graph have a direction associated with them, they are directed edges, which form a digraph

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

Tree

A

A connected graph with no cycles

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

A spanning tree

A

Is a subgraph which includes all the vertices of the graph and is also a tree

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

Eulerian Graph

A

A graph with every vertex of even degree

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

Eulerian Cycle

A

A cycle that includes every edge of a graph exactly once

17
Q

Semi-Eulerian Graph

A

A graph with exactly two vertices of odd degree

18
Q

Planar Graph

A

A graph that can be drawn in a plane in such a way that no to edges meet each other except at a vertex to which they are both incident

19
Q

Isomorphic

A

If they have the same number of vertices and the degrees of corresponding vertices are the same

20
Q

Total Float Equation

A

Latest Finish Time - Earliest Start Time - Duration