博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java===java习题---Josephu问题
阅读量:6679 次
发布时间:2019-06-25

本文共 932 字,大约阅读时间需要 3 分钟。

 

package testbotoo;/** *  * @author  */public class Demo4 {    public static void main(String[] args)    {        CycLink cyclink = new CycLink();        cyclink.setLen(10);        cyclink.createLink();        cyclink.setK(2);        cyclink.setM(2);        cyclink.show();        cyclink.play();    }}class Child{    int num;    Child nextChild = null;        public Child(int num){        this.num = num;    }}class CycLink{    //先定义一个指向链表第一个小孩的应用    Child firstChild = null;        Child temp = null;    int len = 0; //表示共有几个小孩    int k = 0;    int m = 0;        //设置从第几个人开始数数    public void setK(int k)    {        this.k = k;    }        public void setM(int m)    {        this.m = m;    }        public void setLen(int len)    {        this.len = len;    }    //开始play    public void play()    {        Child temp = this.firstChild;        //1.先找到开始数数的人        for(int i = 1; i

 

转载于:https://www.cnblogs.com/botoo/p/8796529.html

你可能感兴趣的文章
FORM开发相关技术(二)
查看>>
实战DeviceIoControl 之一:通过API访问设备驱动程序
查看>>
MFC消息循环
查看>>
配置Spring数据源
查看>>
Jquery元素追加和删除
查看>>
QtWidget: 鼠标拖动窗口(没有标题栏时)
查看>>
数据挖掘
查看>>
Lightning Lessons 史上最蛋疼的英文题
查看>>
JS 实现图片预加载
查看>>
database link 使用<转>
查看>>
WPF换肤系列索引
查看>>
surfaceview 与 view 的区别
查看>>
JavaScript document属性和方法
查看>>
svn命令备份
查看>>
Linux下安装中文输入法
查看>>
嵌入式数据库Perst
查看>>
【SQL语法】系列11:IN 操作符
查看>>
二进制转成十六进制
查看>>
【民间图灵奖】读《图灵的秘密》写读后感获图灵水杯
查看>>
python 动态创建类
查看>>