码迷,mamicode.com
首页 > 编程语言 > 详细

10行Python代码解决约瑟夫环(模拟)

时间:2014-10-01 18:34:31      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   sp   div   

http://blog.csdn.net/dengyaolongacmblog/article/details/39208675

 

 

 1 #!/usr/bin/env python
 2 # coding:   utf-8
 3 
 4 import os
 5 import sys
 6 import string
 7 import operator
 8 import re
 9 
10 def josephus(n,k):
11     link=range(1,n+1) 
12     ind=0
13     for loop_i in range(n-1):
14         ind = (ind+k)% len(link) 
15         ind-=1
16         print Kill:,link[ind]
17         del link[ind]
18         if ind==-1: # the last element of link
19             ind=0
20     print survice :,link[0]
21    
22 
23 if __name__ == __main__:
24 
25     #josephus(100000,300)
26     #print ‘-‘*30
27     josephus(10,5)
28     #print ‘-‘*30
29     #josephus(10,1)

 

10行Python代码解决约瑟夫环(模拟)

标签:style   blog   http   color   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/jingzhishen/p/4003389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!