time-series.pl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/usr/bin/perl -w
  2. $totalSize = 0;
  3. $cur_time= 0;
  4. $start=0;
  5. $time_block = 0.001;
  6. $cur_epoch = 0;
  7. while (<STDIN>) {
  8.       
  9.         ($cur_time,$size) = split(' ',$_);
  10. if ($cur_time > $cur_epoch) {
  11.     while ($cur_epoch < $cur_time) {
  12.         print "$totalSizen";
  13. $cur_epoch = $cur_epoch + $time_block;
  14.         $totalSize=0;
  15.     }
  16.     if ($cur_time < $cur_epoch) {$totalSize=$size;}
  17. } else {
  18.     $totalSize=$totalSize + $size;
  19. }
  20. }