calcdist

来自「Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3」· 代码 · 共 28 行

TXT
28
字号
#!/usr/bin/perl# Usage:  cat dictionaries | grep -v '[^a-z]' | calcdist n score##   Given a lot of words, find an appropriate distribution#   into n tiles with tile values proportional to the square root#   of the ratio of score to the tile's frequency.$n = shift;$score = shift;while (<>) {    chomp;    for $c ( split "", $_ ) {	$freq{$c}++;	$t++;    }}for $c ( sort { $freq{$a} <=> $freq{$b} } keys %freq ) {    #print "$c: $freq{$c}\n";    $need = int($freq{$c}*$n/$t+0.5) || 1;    $value = int(sqrt($score/($freq{$c}*$n/$t))+0.5) || 1;    $t -= $freq{$c};    $n -= $need;    print "$need $c $value\n";}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?