关于hash的值与关键字的问题

关于hash的值与关键字的问题

因为hash中关键字是唯一的,值可以是重复的
那么能否做到,输入一个值,得出好几个hash的关键字呢?
请教大侠们。。。//bow
当然可以
foreach (keys %hash){
print if $hash{$_} eq $your_desired_value;
}
不行


QUOTE:
原帖由 mouse.rice 于 2008-2-26 22:30 发表
不行

really?
Show your output

可能是最后没有换行所以看不清吧
可以用
print "$_\n" 替换上面的print ;

类似下面的code

[Copy to clipboard] [ - ]
CODE:
#!/usr/bin/perl
use strict;
use warnings;
my %hash = ( "a" => "c",
             "b" => "d",
             "c" => "c",
             );
my $value = shift;
foreach(keys %hash){
print "$_\n" if $hash{$_} eq $value;
}



QUOTE:
<lig@other-server:~/chinaunix>$ ./reverse a
<lig@other-server:~/chinaunix>$ ./reverse c
c
a
<lig@other-server:~/chinaunix>$ ./reverse d
b

或者简单点可以用grep

[Copy to clipboard] [ - ]
CODE:
#!/usr/bin/perl
use strict;
use warnings;
my %hash = ( "a" => "c",
             "b" => "d",
             "c" => "c",
             );
my $value = shift;
my @match = grep  $hash{$_} eq $value , keys %hash;
print "@match\n";

发现我最近活得真是太无聊了
理解错了LZ的意思~
谢谢了,受教了~~