求助各位大佬~~~,一道算法题

R
Gi     ven a “flatten” dictionary object, whose keys are dot-separated. For example, { ‘A’: 1, ‘B.A’: 2, ‘B.B’: 3, ‘CC.D.E’: 4, ‘CC.D.F’: 5}. Implement a function in any language to transform it to a “nested” dictionary object. In the above case, the nested version is like:

{

  ‘A’: 1,

  ‘B’: {

    ‘A’: 2,

    ‘B’: 3,

  },

  ‘CC’: {

    ‘D’: {

      ‘E’: 4,

      ‘F’: 5,

    }

  }

}   

It’s guaranteed that no keys in dictionary are prefixes of other keys.

#笔试题目#
全部评论
new_d = {} for key in d:  if "." not in key:   new_d[key] = d[key]  else:   lst = key.split(".")   l = len(lst)   now_d = new_d   for i in range(l-1):    try:     now_d[lst[i]]     except:     now_d[lst[i]] = {}    now_d = now_d[lst[i]]    now_d[lst[-1]] = d[key]
点赞 回复 分享
发布于 2019-08-19 21:32
有大佬解答一下怎么做吗🤣🤣🤣🤣
点赞 回复 分享
发布于 2019-06-12 20:45
多少题啊
点赞 回复 分享
发布于 2019-06-12 21:54
把key用点分开然后构建map就好了嘛
点赞 回复 分享
发布于 2019-06-13 15:54
大佬可以分享一下代码嘛
点赞 回复 分享
发布于 2019-08-07 19:29
你好,可以分享一下你的代码吗
点赞 回复 分享
发布于 2019-08-13 21:26
给我一些 学习用 谢谢
点赞 回复 分享
发布于 2019-08-19 20:34

相关推荐

09-29 11:19
门头沟学院 Java
点赞 评论 收藏
分享
11-22 16:49
已编辑
北京邮电大学 Java
美团 质效,测开 n*15.5
点赞 评论 收藏
分享
1 6 评论
分享
牛客网
牛客企业服务