Python递归数据读取

前端之家收集整理的这篇文章主要介绍了Python递归数据读取前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果你玩过我的世界,以下将更有意义.由于你们许多人没有,我会尽力解释它

我正在尝试编写一个递归函数,可以找到从Minecraft食谱的平面文件中制作任何minecraft项目的步骤.这个让我很难过.

平面文件有点长,所以我把它包含在this gist中.

  1. def getRecipeChain(item,quantity=1):
  2. #magic recursive stuffs go here

所以基本上我需要查找第一个食谱然后查找第一个食谱的所有组分的食谱,依此类推,直到你找到没有食谱的食物.每次我需要将配方附加到列表中,这样我就可以得到一种关于制作物品的顺序的指令集.

所以这是我现在的功能(一个不起作用)

  1. def getRecipeChain(name,quantity=1):
  2. chain = []
  3. def getRecipe(name1,quantity1=1):
  4. if name1 in recipes:
  5. for item in recipes[name1]["ingredients"]["input"]:
  6. if item in recipes:
  7. getRecipe(item,quantity1)
  8. else:
  9. chain.append(item)
  10. getRecipe(name,quantity)
  11. return chain

这是我想要的理想输出.它是一个字典,其中存储了项目名称数量.

  1. >>> getRecipeChain("solar_panel",1):
  2. {"insulated_copper_cable":13,"electronic_circuit":2,"re_battery":1,"furnace":1,"machine":1,"generator":1,"solar_panel":1}

所以问题是,我该怎么做?

我知道要求人们为你做的工作在这里不受欢迎,所以如果你觉得这对你来说有点太接近我只是这么说.

最佳答案
这可以使用collections.Counter优雅地解决,它支持添加

  1. from collections import Counter
  2. def getRecipe(name,quantity=1):
  3. if not name in recipes: return Counter({name: quantity})
  4. subitems = recipes[name]["ingredients"]["input"]
  5. return sum((getRecipe(item,quantity) for item in subitems),Counter())
  6. print repr(dict(getRecipe("solar_panel")))
  7. # => {'copper': 39,'refined_iron': 10,'glass': 3,# 'rubber': 78,'cobblestone': 8,'tin': 4,# 'coal_dust': 3,'nothing': 10,'redstone': 6}

猜你在找的Python相关文章