Create a Graph structure

S

sanoBabu

Hi all

My Java code tries to read a text file of the form -
"Source_node Dest_node distance" and then based on the distance between
those nodes, try to find the minimal spanning tree.

I've already created a class called Node which has source_node and
dest_node and simple accessor/mutator methods.

I've also created an Edge class which represents the distance between
the 2 nodes. Edge has one constructor -
public Edge(Node d, double cost);

I've also created a class called Graph which basically has no
constructor and has the following methods-

public void addEdge(String s,String d,double weight);
public Node getNode(String nodeName);
private Map aNodeMap = new HashMap(); //Maps string to Node

To proceed for the solution, I read the file -> parse contents -> then
I add the "source destination weight" to the graph object using -
g.addEdge(source,dest,weight);

Honestly I don't know how I can tackle the solution after that.
After adding the edges, do I just run the minimal spanning tree
algorithm (g.prim()) on the Graph or do I have to do something more?

ThAnks.
SanoBabu
 
R

Roedy Green

Honestly I don't know how I can tackle the solution after that.
After adding the edges, do I just run the minimal spanning tree
algorithm (g.prim()) on the Graph or do I have to do something more?

A few thoughts.

I would think an edge would have two nodes, source and dest.

It depends on how your algorithm works, but you may need to build a
structure of nodes with references linking them rather than a separate
list of edges. It was not clear if you did that.

The key is to understand your algorithm. It presumes a certain
representation. You have to provide that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,008
Latest member
HaroldDark

Latest Threads

Top