我希望每个键的所有节点都按哈希引用或数组中的键排序,或者类似的东西,以便我可以根据我的需要迭代它,因为我必须用它的所有子项显示每个键。 以下是我的数据结构:
$hash1 = {
'3' => {
'title' => 'Parent-3',
'parentid' => '-1'
},
'1' => {
'children' => {
'11' => {
'title' => 'child-1',
},
'5' => {
'children' => {
'8' => {
'title' => 'first child of child-2',
},
'13' => {
'title' => 'second child of child-2',
}
},
'title' => 'child-2',
}
},
'title' => 'Parent-1',
'parentid' => '-1'
},
'2' => {
'title' => 'Parent-2',
'parentid' => '-1'
},
'4' => {
'title' => 'Parent-4',
'parentid' => '-1'
},
};
我使用了以下功能:
sub Options {
my $hash = shift;
my $options = '';
my $iter; $iter = sub {
my $hash = shift;
my $indent = shift || '';
foreach my $k (sort {$a <=> $b} keys %{$hash}) {
my $v = $hash->{$k};
if($v->{parentid} eq '-1'){
$options .= $v->{title} ."-parent\n";
}else{
$options .= $v->{title} . "," ;
}
if ($v->{children}){
$iter->($v->{children}, $indent . "");
}
}
chop($options);
$options .= "\n";
};
$iter->($hash);
return $options;
}
这里它返回一个逗号分隔的字符串,但我需要某种数据结构,以便我能够找到每个键的所有子节点(以散列引用或数组的形式),如:
Parent-1 -> [child-1,child-2, first child of child-2, second child of child-2]
Parent-2
Parent-3
Parent-4
任何人都可以帮助我吗?提前谢谢。
答案 0 :(得分:1)
如果您的唯一目标是显示哈希内容,则应使用the Data::Dumper module。它可用于以良好的格式打印任意复杂度的数据结构。
答案 1 :(得分:0)
您可能还会发现brian d foy's answer on checking key existence有用
带有用于遍历数据结构和Data :: Diver的代码的代码可以为您提供所需的所有帮助。