Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: Finding connected components in a graph.

by zing (Beadle)
on Oct 03, 2012 at 15:50 UTC ( [id://997081]=note: print w/replies, xml ) Need Help??


in reply to Re: Finding connected components in a graph.
in thread Finding connected components in a graph.

Hi guys, I have this code which takes in input in the form of triplets of vertices(see DATA)
use strict; use warnings; use Data::Dumper; my @S; while (<DATA>) { push @S, [split]; } print "-----TRIPLETS-------\n"; print Dumper \@S; __DATA__ b c a a c d d e b
What Im stuck with is this :: Suppose I have these points=(a,b,c,d); Then I want to find the set of triplets induced by these 4 vertices. For example for above four points the induced triplets should be:
b c a a c d
Whereas for vertices=(d,e,a) there isn't any triplet in the data.

Similarly for vertices=(b,e,d) there is a triplet (d e b) in the data(the last one).

Replies are listed 'Best First'.
Re^3: Finding connected components in a graph.
by choroba (Cardinal) on Oct 03, 2012 at 15:56 UTC
    This is barely related to the post you replied to. Please, if you have a new question, start a new thread. It can bring you more attention.
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ
      Thanks for the suggestion choroba.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://997081]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-19 06:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found