I'm trying to implement in C some graph algorithms, using an adjacency matrix as support data structure. I need to implement a weighted graph, with weigths represented by a real number.

Given that 0 and negative numbers would be a correct weight for an edge, how can I represent the absence of an edge between two nodes?

link|improve this question

77% accept rate
Hmmm ... maybe C99's nan() – pmg May 5 '11 at 20:17
feedback

2 Answers

up vote 2 down vote accepted

You could use instead of a number (double) a structure like this:

struct weight
{
   double weight;
   bool edge_exists;
};

and create an adjacency matrix of weight's. So if edge_exists is false there is no reason to check the weight, otherwise weight will be meaningful.

I would use the above if every(?) double could be a possible weight value.

link|improve this answer
feedback

What about a nonsensical (I'm guessing you're making the assumption all weights should be positive) number, such as -1?

This would keep the code light (no need to add extra data structures), and it would be simple to remember.

link|improve this answer
Sorry, I forgot to say that negative numbers are accepted as weights – JustB May 5 '11 at 20:30
Funky! Ok, equality's answer is looking pretty good right now :) – wpearse May 5 '11 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.