- 论坛徽章:
- 1
|
本帖最后由 唐归来 于 2013-08-05 21:18 编辑
- use strict;
- use warnings;
- use List::Util qw(max);
- open IN1,"< ./cu/1.txt" or die"$!";
- open IN2,"< ./cu/2.txt" or die"$!";
- open OUT,"> ./cu/result.txt" or die"$!";
- my $ref1 = {};
- my %groups = ();
- while (<IN1>) {
- chomp;
- $_ =~ s/^\s+//;
- my @arr = split/\s+/;
- my $group = ($arr[0]-2400)%60;
- $ref1->{$group}->{$arr[1]}->{$arr[0]} = $.;
- push @{$groups{$group}},$arr[1];
- }
- close IN1;
- my %hash = ();
- while (<IN2>) {
- chomp;
- $_ =~ s/^\s+//;
- my @arr = split(/\s+/,$_,2);
- $hash{$arr[0]} = $arr[1];
- }
- close IN2;
- foreach my $key (keys %hash) {
- print "$key\n";
- }
- foreach my $groupnum (0..59) {
- my $maxnum = max(@{$groups{$groupnum}});
- foreach my $tag (keys %{$ref1->{$groupnum}->{$maxnum}}) {
- print OUT "$tag\t$hash{$tag}\t$maxnum\n";
- }
- }
- close OUT;
复制代码 |
|