package linkedlist;
//约瑟夫问题
public class Josepfu {
public static void main(String[] args) {
// TODO Auto-generated method stub
CircleSingleLinkedList c = new CircleSingleLinkedList();
c.addBoy(5);
c.countBoy(1, 2, 5);
}
}
//创建一个环形单向链表
class CircleSingleLinkedList{
//创建一个first节点,当前没有编号
private Boy first = new Boy(-1);
//添加节点,构建成一个环形链表
public void addBoy(int nums) {
//这里的nums表示要添加的节点的个数
//nums做一个数据校验
if(nums<1) {
System.out.println("必须大于等于一个节点");
return;
}
Boy cur = null;//辅助指针
for(int i = 1;i<=nums;i++) {
//创建节点
Boy boy = new Boy(i);
//如果是第一个
if(i==1) {
first = boy;
first.setNext(first);
cur = first;//让cur指向第一个节点
}else {
cur.setNext(boy);
boy.setNext(first);
cur = boy;
}
}
}
//根据用户输入,计算出节点出圈顺序
// startNo 表示从第几个节点开始数,自己要数的
// countNum 数几下,最后数的那个节点被删除
// nums 表示创建多少个节点
public void countBoy(int startNo,int countNum,int nums) {
//先对数据进行校验
if(first == null || startNo < 1 || startNo > nums ) {
System.out.println("参数有误,请重新输入");
return;
}
//helper事先指向环形链表最后一个元素
Boy helper = first;
while(true) {
if(helper.getNext() == first) {//说明helper指向了最后一个节点
break;
}
helper = helper.getNext();
}
//报数前,先让first和 helper 移动 k - 1 次
for(int j = 0;j<startNo -1;j++) {
first = first.getNext();
helper = helper.getNext();
}
//报数时让first 和 helper 指针同时移动 m-1次,然后删除
//循环直到只剩一个节点
while(true) {
if(helper == first) {//说明圈中只有一个节点
break;
}
//first 和 helper 指针同时移动 countNum -1
for(int j =0; j<countNum - 1;j++) {
first = first.getNext();
helper = helper.getNext();
}
//这时first指向的节点就是要删除的节点
System.out.printf("%d出圈\n",first.getNo());
first = first.getNext();
helper.setNext(first);
}
System.out.printf("最后留在链表的节点编号 %d \n",helper.getNo());
}
//遍历当前环形链表
public void list() {
if(first == null) {
System.out.println("没有节点");
return;
}
Boy cur = first;
while(true) {
System.out.printf("节点的编号 %d \n",cur.getNo());
if(cur.getNext() == first) {//说明已经到达最后一个节点
break;
}
cur = cur.getNext();//cur后移
}
}
}
//Boy 节点
class Boy{
private int no;//编号
private Boy next;
public Boy(int no) {
this.no = no;
}
public int getNo() {
return no;
}
public void setNo(int no) {
this.no = no;
}
public Boy getNext() {
return next;
}
public void setNext(Boy next) {
this.next = next;
}
}
问题介绍
创建环形链表
出圈方法