Decision - Other Flashcards
What is an algorithm?
A finite sequence of step-by-step instructions carried out to solve a problem
What is the order of an algorithm?
The order of an algorithm can be described as a function of its size. If an algorithm has order f(n), then increaasing the size of the problem from n to m will increase the run time of the algorithm by a factor of approximately f(m)/f(n)
What are isomorphic graphs?
isomorphic graphs are graphs that show the same information but may be drawn differently
What is an adjacency matrix?
A matrix providing information about the connections between vertices in a graph. Each entry in an adjacency matrix describes the number of arcs joining the corresponding vertices
What is a trace table?
A table used to record the values of each variable when you carry out an algorithm
What is a distance matrix?
A matrix where the entries represent the weight of each arc, not the number of arcs
What is the chinese postman algorithm?
Route inspection
When is a distance matrix symmetrical along the leading diagonal?
For any undirected graph