免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: cj4777
打印 上一主题 下一主题

算法小考,小伙伴们来试试吧 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2013-12-10 23:31 |只看该作者
才发现注册了一年多,处女贴在这里。。。。看来以后要常上来逛逛了。。。

论坛徽章:
33
荣誉会员
日期:2011-11-23 16:44:17天秤座
日期:2014-08-26 16:18:20天秤座
日期:2014-08-29 10:12:18丑牛
日期:2014-08-29 16:06:45丑牛
日期:2014-09-03 10:28:58射手座
日期:2014-09-03 16:01:17寅虎
日期:2014-09-11 14:24:21天蝎座
日期:2014-09-17 08:33:55IT运维版块每日发帖之星
日期:2016-04-17 06:23:27操作系统版块每日发帖之星
日期:2016-04-18 06:20:00IT运维版块每日发帖之星
日期:2016-04-24 06:20:0015-16赛季CBA联赛之天津
日期:2016-05-06 12:46:59
12 [报告]
发表于 2013-12-11 08:15 |只看该作者
回复 7# cj4777

  1.     test = {8: ',3,4,5,6,7,9,13,15,',
  2.                9: ',6,7,10',
  3.                3: ',2,16,21',
  4.                21: ',8,9,11,14'}

  5. test[8] = ',3,4,5,6,7,9,13,15,'
  6. test[9] = ',6,7,10'
  7. test[3] = ',2,16,21'
  8. test[21] = ',8,9,11,14'
复制代码

  1. for xx in test:
  2.     if test.get(test[xx]):
  3.         print xx, test[xx], test[test[xx]]
复制代码
随便写的, 我没测试过.

论坛徽章:
0
13 [报告]
发表于 2013-12-12 17:50 |只看该作者
本帖最后由 Hadron74 于 2013-12-12 17:52 编辑

回复 1# cj4777


这个问题,从图论角度出发,就是“如何在有向图中寻找环”的问题:一个字典是一个点的有向边的集合,输出的循环就是有向图的“环”,所以问题就是”how to detect circles in a directed graph?”

问题如果这样描述,算法就不难找了:
从网上搜了两个网页:
中文:
http://www.360doc.com/content/10/0518/16/1304528_28243924.shtml
英文:
http://stackoverflow.com/questio ... in-a-directed-graph

比较忙,python代码就不写了。期待大侠前来。。。

论坛徽章:
4
白羊座
日期:2013-11-05 10:26:09冥斗士
日期:2015-11-17 14:19:55白银圣斗士
日期:2015-11-17 15:13:0815-16赛季CBA联赛之新疆
日期:2016-04-01 09:10:58
14 [报告]
发表于 2013-12-25 10:31 |只看该作者
回复 13# Hadron74

今天空,练下手。
  1. """
  2. To check whether there is cycle in a graph(Direction based),
  3. have to perform deep first search based navigation.
  4. If there is a node appeared more than 1 times in path,
  5. then, the path is a cycle.

  6. Direction Graps is stored with following style:
  7.     { Node1: [NodeName1, NodeName2],
  8.       Node2: [NodeName1, NodeName2]}
  9. In the format, Node1, Node2 are represent related nodes in graph.
  10. And [NodeName, NodeName2] represent relate curve from curent node to next node.
  11. """

  12. from copy import deepcopy

  13. def dfs(node, graph, path):
  14.     '''Deep first search navigation, if node appeared in path, cycle found.'''
  15.     # if could find node
  16.     if graph.has_key(node):
  17.         # If node in navigation path, find cycle, return result and path
  18.         if node in path:
  19.             return path
  20.         # If could not find node in path, for each sub-arc, recursive dfs
  21.         else:
  22.             for arc in graph[node]:
  23.                 # deepcopy is required, avoid dfs pollute tracking
  24.                 newpath = deepcopy(path)
  25.                 newpath.add(node)
  26.                 result = dfs(arc, graph, newpath)
  27.                 if result:
  28.                     return result
  29.     else:
  30.         # If could not find coming node, navigation end, navigation back
  31.         return None

  32. def main():
  33.     testData = {8: [3,4,5,6,7,9,13,15],
  34.                9: [6,7,10],
  35.                3: [2,16,21],
  36.                21: [8,9,11,14]}
  37.     path = set()
  38.     for node in testData.iterkeys():
  39.         result = dfs(node, testData, path)
  40.         if result:
  41.             print result
  42.             break;
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP