问题标签 [hash-reference]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
269 浏览

perl - 如何在不知道其键的情况下遍历哈希的嵌套哈希?

我有一个哈希哈希,即我的数据结构中的哈希和哈希引用。当我只有主哈希名称而没有最深哈希的键时,我可以遍历最深哈希吗?

当我只有它的名称 %gates_info 并且没有诸如“nand”或“and”之类的键时,我想遍历整个哈希。我想要实现的是通过排序获得每个门中的最高数值。比如nand case中的3和and case中的2。sub max_gate_order 用于排序和返回最大值。谢谢