- 论坛徽章:
- 46
|
本帖最后由 zhlong8 于 2010-11-03 15:52 编辑
回复 7# liuguiyou1981
类似不过要多点处理。再写下:)- use strict;
- use warnings;
- my @info;
- my %result;
- sub sum_from;
- open my $f, '<', 'file2' or die $!;
- while (<$f>) {
- chomp;
- my($from, $to) = split /\s+/;
- push @{$info[$from]}, $.;
- push @{$info[$to]}, $.; #$. 为第二个文件每个区间的 unique ID
- }
- close $f;
- open $f, '<', 'file1' or die $!;
- while (<$f>) {
- chomp;
- my($from, $to) = split /\s/;
- $result{"$from $to"} = sum_of $from, $to;
- }
- sub sum_from { #任何ID在这个区间出现两次即说明整个file2的区间就在其中
- my($from, $to) = @_;
- my $sum;
- my %dict;
- for my $entry ($from .. $to) {
- $dict{$_} ++ for @{$info[$entry]}; #以上面的unique ID 为键
- }
- #所有值为2的entry即为答案,计算总数即可
- while (my($k,$v) = each %dict) {
- $sum ++ if $v == 2;
- }
- return $sum;
-
- }
复制代码 |
|