Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Re: Finding largest common subset in lists?

by zby (Vicar)
on Jun 05, 2003 at 10:19 UTC ( [id://263272]=note: print w/replies, xml ) Need Help??


in reply to Re: Finding largest common subset in lists?
in thread Finding largest common subset in lists?

It won't work on general data. It will find the first subsequence of @a that is in @b and be content with it. But it was an interesting attempt.

Update: For @a = qw(a b c); @b = qw(a b c) it prints b. For two element lists it does not work at all.

Update: Changed the code to:

my $str = join(" ", @a) . "&" . join(" ", @b); if ($str =~ /(?:\b\w+\b\s*)*? ((?:\b\w+\b\s*)+) (?:\s*\b\w+\b\s*)*? & (?:\b\w+\b\s*)*? \1 (?:\s*\b\w+\b)*?/x) { my $result = $1; $result =~ s/\s*$//; print "found '$result'\n"; }
It does not have the problem with cutting the first and last elements of the list, but still for @a = qw(a b c); @b = qw(a x b c) it prints a.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-19 21:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found