CSE 373 Data Structures Sp08, Homework 6 & 7

Electronic Turn-in of code due: 11:59pm Thursday, 6/05/08.
Printout of code due: At the beginning of class, Friday, 6/06/08
(We will grade what you submit electronically and email you feedback – no printouts will be due in class on Friday.)

This assignment will be equal to 1.5 assignments in weight, although it will only have one due date.  In the assignment, you will develop a graph implementation and then use it to implement at least one graph algorithm.  In particular, you will implement (at least) Dijkstra’s algorithm for finding the shortest path.

For this assignment, (if you wish, not required) you may work with one partner for the programming portion of the assignment.  If you plan on working pairs: one partner MUST send email containing the names and email addresses of both partners to Tian by 11:59pm Thursday May 29th .

Part I.  Graph Representations (recommended due date Friday 5/30/08)

In this part of the assignment you will implement a graph representation to be used later in Part II.

The assignment has these files provided:

 

You are to create a class MyGraph.java that implements the Graph.java interface.  Graph.java makes use of the Vertex.java class provided, although you should feel free to add things to the Vertex.java class, or extend it with inheritance etc..  Just don’t remove anything that is currently there.  You should not modify Graph.java.  Your code should be efficient and strive for the minimal big-Oh possible for the requested operations. 

 

Part II.  Graph Algorithms

In this part of the assignment, you will use the graph representation you created in Part I to read a description of a graph and answer questions about it.  In particular, you should use Dijkstra's algorithm to find shortest paths in the graph.

What to Do

Write a program that reads a description of a directed graph with weighted edges, then answers questions about paths in that graph.  More specifically, the program should operate as follows:

You may assume that every node name that appears in a path (edge) also appears in the vertex list.  Note that since data files are expected to represent directed graphs, the existence of an edge from a to b does not guarantee the existence of an edge from b to a (unless both edges exist in the data file), nor does it guarantee that the weight of the edge from a to b is the same as the weight of the edge from b to a.

 

Two sample data files are available representing information about airports and the cost of a flight between them.  File vertex.txt contains a list of 3-letter airport codes, each of which represents a vertex in a directed graph.  File edge.txt contains information about the directed edges in the graph. 

 

You should use your graph implementation from Part I as a starting point.  Feel free to add or extend the given vertex class (but don’t take anything out).

Extra Credit

A small amount of extra credit will be awarded for interesting extensions.  Here are a few possibilities:

What to Turn In

You should turn in the following electronically:

In addition, if you worked with a partner, 1) only one partner needs to submit the code electronically and make a printout.  2) Be sure that both partners’ names are listed in all files.  3) Include in your readme.txt file a description of how you developed and tested your code.  If you divided it into pieces, describe that.  If you worked on everything together, describe the actual process used – how long you talked about what, how long and in what order you wrote and tested the code.  Be sure to describe at least one good thing and one bad thing about the process of working together.