raiten:
I'd convert the times to seconds, and then do something like this:
$ cat t.pl
#!/usr/bin/perl
use strict; use warnings;
use Data::Dumper;
### Get a list of picture times, in seconds
my @times;
push @times, int 150*rand for 0 .. 30;
### Sort them
@times = sort { $a<=>$b } @times;
### Group together the pix whose time is less than MAX_TIME_DIFF secon
+ds
### apart
my $MAX_TIME_DIFF=10; # Minimum time between photos
my $MIN_GRP_SIZE=3; # Minimum "interesting" group size
my @groups;
my $cur_group = [ shift @times ];
while (@times) {
if ($$cur_group[-1]+$MAX_TIME_DIFF >= $times[0]) {
# small interval, add to current group
push @$cur_group, shift @times;
}
else {
# store last group (if interesting) and start
# a new one.
push @groups, $cur_group if @$cur_group >= $MIN_GRP_SIZE;
$cur_group = [ shift @times ];
}
}
print Dumper(\@groups);
$ perl t.pl
$VAR1 = [
[
32,
36,
39,
39,
40,
42,
48,
53,
55,
56,
57,
58,
59
],
[
72,
73,
77,
82
],
[
93,
103,
104,
105,
108,
111,
113,
113,
114,
116
]
];
...roboticus
When your only tool is a hammer, all problems look like your thumb.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|