JAVA围圈报数 问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA围圈报数 问题相关的知识,希望对你有一定的参考价值。
经典的围圈报数问题是:有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子。
但是如果不从第一个开始,而是从某随机编号开始要怎么办?
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
public static void main (String[] args) throws java.lang.Exception
// your code goes here
countThree(50, 0, 3);
/**
* @param n 人的总数
* @param start 开始报数的序号,start < n
* @param m 出列的标记(可以大于n)
*/
private static void countThree(int n, int start, int m)
List<Integer> list = new ArrayList<Integer>();
//初始化列表
for (int i = 1; i <= n; i++)
list.add(i);
while (list.size() > 0)
//将前连个移入列表尾端
for (int j = 0; j < m-1; j++)
list.add(list.remove(start));
//打印出列的序号
System.out.println(list.remove(start));
参考技术A 接着第二个是随机开始那人的下一个人,还是继续随机呢?
以上是关于JAVA围圈报数 问题的主要内容,如果未能解决你的问题,请参考以下文章