UPDATE

Sorry guys, I have found another way to get the results I wanted

I wanted to stock times inside slices of hours: all the times between, for ex: 11:00 and 12:00 and equally redistribute them inside this slice, but at the same time keeping the old values so as to make the difference between the new and former times Then I realized I had to use a second hash to conserve the minutes

This is the code which was already inspired a lot by BrowserUK but that I have uddated for my purpose.

#! perl -slw use strict; use diagnostics; use Data::Dump qw[ pp ]; my %in; my %former_in; while (<DATA>){ m[(\d\d):(\d\d) (.+)$] and push @{ $in{ $1 } }, $3 and $former_in{$3} += $2; print STDOUT "1 is $1\n"; print STDOUT "2 is $2\n"; print STDOUT "3 is $3\n"; } my @keys = keys %in; my @times = sort @keys; for my $hr ( sort{ $a <=> $b } keys %in ) { my $n = $#{ $in{ $hr } }; my $step = 60 / $n; my $min = 0; for my $flight ( @{ $in{ $hr } } ) { my $former_time = $former_in{$flight}; # relative difference my $diff = int( $min ) - $former_in{$flight}; printf( "%02d:%02d %s %s\n", $hr, int( $min ), $flight, $diff +); $min += $step; $min = 59 if $min > 59; } } __DATA__ 11:10 A1 11:30 E4 11:30 Z4 11:50 H5 12:02 H6 12:25 B2 12:25 A8 12:30 F3 12:30 E7 12:50 E15 12:55 E16

old prog

sub by_hour{ if ($a =~ /(\d\d):(\d\d)/){ $h_a = $1; $mn_a = $2; } if ($b =~ /(\d\d):(\d\d)/){ $h_a = $1; $mn_a = $2; } if ($h_a < $h_b){ -1; } if ($h_a > $h_b){ 1; } if ($h_a == $h_b){ if ($mn_a < $mn_b){ -1; } if ($mn_a > $mn_b){ 1; } if ($mn_a == $mn_b){ 0; } } }

In reply to sub routine to sort per time by steph_bow

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.