数据结构算法实战约瑟夫问题数组实现 # 约瑟夫问题数组实现 def josephus(n, k): # 初始化环 circle = [i for i in range(1, n+1)] # 索引初始位置 index = 0 # 开始报数并删除 while len(circle) >