vote up 0 vote down star

Hallo everyone,

i have a list of nodes ListNode and i want to draw a line between two nodes if there is an edge / link between them. My approach so far is:

public void drawGraphInBIM(ref BIM bim)
{
    foreach (Node nodeOuter in ListNode)
    {
    	foreach (Node nodeInner in ListNode)
    	{
    		if (areNodesLinked(nodeOuter, nodeInner))
    		{
    			bim.drawPolygon(nodeOuter.XYZ, nodeInner.XYZ);
    		}
    	}
    }
}

I am wandering how the if there is a local copy of ListNode for each loop or is there just a reference and nodeOuter and nodeInner are operating on the same ListNode?

Is there a better approach to this problem?

Cheers,

Dawit

flag

Slightly vague question... Are you asking for a more efficient algorithm? – Jon Seigel Nov 6 at 16:37
Yes, my approach is enough for small sets of nodes but if the sets get larger, it is slow. – da8 Nov 6 at 16:44
Could you describe the ListNode a bit more, and maybe include the areNodesLinked method also (at least pseudo)? I.e. what does edge/link mean? – Groo Nov 6 at 17:34

2 Answers

vote up 3 vote down check

It's the same ListNode. No local copies are made of reference types.

link|flag
vote up 1 vote down

It is the same ListNode collection. You are not copying it.

The reason you're seeing this slow down is because you're current algorithm is O(N^2). It's going to do N^2 iterations for N items, so as your collection grows, the algorithm slows down exponentially.

link|flag

Your Answer

Get an OpenID
or

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