Bubble Sort Algorithm (1:2, 3)
Quick Sort Algorithm (6)
First-Fit Algorithm (2)
2. Pack each item in the first available bin that can take it, starting from bin 1 each time
First-Fit Algorithm +/- (2)
+ Quick and easy to implement
- Not likely to lead to a good solution
First-Fit Decreasing Algorithm (2)
2. Apply the first-fit algorithm on the reordered list
First-Fit Decreasing Algorithm +/- (3)
+ Usually get a fairly good solution
+ Quick and easy to implement
- May not get an optimal solution
Full-Bin Method (2)
Full-Bin Method +/- (2)
+ Usually get a good solution
- Difficult to do, especially when the numbers are plentiful and awkward
Vertex / Node
Point on a graph
Edge / Arc
Line segment joining two vertices
Weight
Number associated with an edge
Weighted Graph / Network
Graph with weighted edges
Vertex Set
List of vertices
Edge Set
List of edges
Subgraph
Part of an original graph, all of whose vertices and edges belong to the original graph
Degree / Valency / Order
Number of edges incident to a vertex
Even / Odd Degree
Even / odd number of edges incident to a vertex
Walk
Route through a graph along the edges from one vertex to the next
Path
Walk in which no vertex is visited more than once
Trail
Walk in which no edge is visited more than once
Cycle
Walk in which the end vertex is the same as the start vertex and no other vertex is visited more than once
Hamiltonian Cycle
Cycle that includes every vertex
Connected Vertices
Two vertices are connected if there is a path between them
Connected Graph
A graph is connected if all of its vertices are connected