首页 > 其他 > 详细

Dynamic Programming--minium span tree

时间:2016-04-27 20:31:41      阅读:128      评论:0      收藏:0      [点我收藏+]

graph=[
[0,   1,   999,  9, 999],
[1,   0,   5,    7,   3],
[999, 5,   0,    999, 4],
[9 ,  7,   999,  0,   3],
[999, 1,   999,  9, 999]
]

for i in range(0,5):
 print graph[i]

points =[‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘]
selected =[]

def is_not_selected(i):
 if i in selected:
  return False
 else:
  return True

edges = []
#1 find the shortest edge
#2 add the points of edge into selected set
#3 in the selected set, add the shortest edge with one point in the selected set,while the other is not 
def get_minium_tree(edges):
 k=0
 while k<100:
  min=1000
  curi = -1
  curj = -1
  for i in range(0,5):
   for j in range(0,5):
    if ((i !=j) and (is_not_selected(i) or is_not_selected(j))):
     if min>graph[i][j] :
      min= graph[i][j]
      curi =i
      curj = j
  if ((curi == -1) or (curj == -1)):
   break
  if is_not_selected(curi):
   selected.append(curi)
  if is_not_selected(curj):
   selected.append(curj)
  edges.append([points[curi], points[curj]])
  k=k+1

get_minium_tree(edges)

print edges

 

Dynamic Programming--minium span tree

原文:http://www.cnblogs.com/zhaodonglin/p/5440111.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!