首页 > 其他 > 详细

Greedy Algorithoms---knapback

时间:2016-06-07 08:48:50      阅读:104      评论:0      收藏:0      [点我收藏+]

from __future__ import division

weight = [10,20,30]
volume =[60,100,120]
kept = [0,0,0]
M = 50
def knapback(M, weight, volume, kept):
 for i in range(0,3):
  if weight[i] < M:
   kept[i] = 1
   M = M-weight[i]
  else:
   kept[i] = M/weight[i]
knapback(M, weight, volume, kept)
print kept

Greedy Algorithoms---knapback

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

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