Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What's the most efficient way to check for duplicates in an array of data using Perl?

what is the best way to find the duplicate values in array without using hash ,

@A = ("foo","baz","bar","foo","baz","foo");

This is my array, how to pull only duplicate values, like:

foo
baz
@arr1 = (
          '2017554310',
          '2078991086',
          '2163824970',
          '2405206346',
          '2769562630',
          '2769562630',
          '3137026006',
          '3232651356',
          '3369962470',
          '3865302266',
          '4107452620',
          '4232926280',
          '5205689000',
          '5613613000',
          '6105668446',
          '6187592436',
          '6239350730',
          '6239350730',
          '7024698706',
          '7024698706',
          '7024698706',
          '7024698706',
          '7047088496',
          '7136929460',
          '7149705670',
          '7178455806',
          '7607491726',
          '7757710940',
          '8056423386',
          '8325522340',
          '8325522340',
          '8437352856',
          '8437352856',
          '8437352856',
          '9738570770'
        );
share|improve this question
7  
Is this homework? Why wouldn't you want to use a hash? – Leonardo Herrera Nov 2 '11 at 17:43
2  
TIMTOWTDI, anyone? – Zaid Nov 2 '11 at 17:49
1  
BTW, this is very easily done but I fail to see the point. Any answer will be the wrong way to accomplish this task, unless this is some form of homework. – Leonardo Herrera Nov 2 '11 at 17:54
1  
How is this a duplicate? All the efficient ways of finding duplicates in an array in Perl involve a hash (or sort), but if you don't care about efficiency, for my $i (1 .. $#A) { print $A[$i] if 1 == grep $_ eq $A[$i], @A[0 .. $i-1]; } should do the job just fine. – Ilmari Karonen Nov 2 '11 at 18:37
show 4 more comments

marked as duplicate by logancautrell, Eric Strom, Sinan Ünür, daxim, CanSpice Nov 2 '11 at 18:14

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

I'm not sure why you have the no hash restriction, or no external modules. What if it's one of the standard Perl modules like File::Basename or File::Find? These come with the standard Perl install.

Can you sort your array?

my @A = qw(foo baz bar foo baz foo);
my @B = sort @A;

Now @B is equal to qw*bar baz baz foo foo foo). You can then go through this array and see if the previous value equals the last value:

my @B = sort @A;
my $previous = pop @B;    #Just to start out:

foreach my $value (@B) {
   if ($previous eq $value) {  #Assuming strings only cause I can't use Scalar::Utils
      print qq("$value" is a duplicate!\n);
   }
   $previous = $value;
}

This will print out multiple instances of "foo" is a duplicate (one for each duplicate). If you don't want that, you'll have to test to see whether or not you've previously printed out that statement.

share|improve this answer

Possibly buggy and very likely pointless:

#!/usr/bin/perl

use strict; use warnings;

my @A = ("foo","baz","bar","foo","baz","foo");
@A = sort @A;

my @duplicates;
my $prev = pop @A;

while (defined(my $x = pop @A)) {
    if ($prev eq $x) {
        push @duplicates, $x;
        while (defined(my $y = pop @A)) {
            if ($y ne $x) {
                $prev = $y;
                last;
            }
        }
    }
    else {
        $prev = $x;
    }
}

use Data::Dumper;
print Dumper \@duplicates;
share|improve this answer
+1 for "pointless" – Axeman Nov 2 '11 at 19:28
thx, but this am not sure why this snippet not worked for this number array, when i print dummper, it is just printing the empty array, check my update, i added the new array – bharanikumar Bs Nov 3 '11 at 12:33
I had forgotten about the else. – Sinan Ünür Nov 3 '11 at 13:10

Use 'List::MoreUtils'

perl -MList::MoreUtils=uniq -e '@A=("foo","baz","bar"","foo");print join " ", uniq(@A),"\n"'     
foo baz bar 
share|improve this answer
uniq uses a hash, so this doesn't fulfil the requires of the question. – Quentin Nov 2 '11 at 17:51
The question is asking for non-unique elements. – Zaid Nov 2 '11 at 17:52
@Quentin: Fair enough, but I can't see why the OP would care. – JRFerguson Nov 2 '11 at 18:42
@Zaid: Oops. I totally misread the question. My apologies. – JRFerguson Nov 2 '11 at 18:43
@James_R_Ferguson — Presumably because it is a non-real-world situation. – Quentin Nov 2 '11 at 19:18
show 1 more comment

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