r5rs 中的哈希表
我正在解决需要动态编程的欧拉项目的问题,在这个特定的实例中,使用哈希表比动态编程“解决方案”表更干净。使用 r5rs,我可以使用哪些函数来创建自己的哈希表?我怎样才能最好地构建和使用一个?它是一个整数哈希表。
I am solving a problem on project euler requiring dynamic programming, and in this particular instance, it is cleaner to use a hash table over a dynamic programming "solutions" table. Using r5rs, what functions are available to me to create my own hash table? how might i best go about constructing and using one? it's a hash table of integers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 SFRI 69:基本哈希表,其中包括 参考实现,几乎是纯粹的 R5RS。
Check out SFRI 69: Basic hash tables, which includes a reference implementation that is nearly pure R5RS.