标题:请问我这个程序有啥问题。执行下来,wordlist里面是空白。请哪位朋友指点一 ...
取消只看楼主
nielong1964
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-10-11
 问题点数:0 回复次数:0 
请问我这个程序有啥问题。执行下来,wordlist里面是空白。请哪位朋友指点一下。



!/usr/bin/perl

open (FH, 'F:\\perl\about BUCT.txt ') || die $!;
open (OUT,'>>','F:/perl/wordlist.txt')or die $!;
sub byDescendingValues{
 $value= $freq{$b}<=>$freq{$a};
if ($value==0){
return $a cmp $b;
}else{
return $value;
}
}

while(<FH>) {
   {$line=$_ ;
        chomp $line;
        @words = split (/[\.\?,!;:]+\s+/, $line);}

        foreach $x (@words) {
              ++ $wordfreq{$x};
              }
              }
        close FH;

          foreach $x(sort byDescendingValues keys %freq){

   print OUT "$x,$wordfreq{$x}\n";
   }
搜索更多相关主题的帖子: 朋友 return about close 
2011-10-11 20:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-352119-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.965540 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved