约瑟夫问题

约瑟夫问题百度百科

https://baike.baidu.com/item/%E7%BA%A6%E7%91%9F%E5%A4%AB%E9%97%AE%E9%A2%98/3857719?fr=aladdin

首先创建环形链表的思路图解

 

 

代码实现

package com.afmobi;

public class Josepfu {
	
	
	
	public static void main(String[] args) {
		CircleSingleLinkedList circleSingleLinkedList = new CircleSingleLinkedList();
		circleSingleLinkedList.addBoy(50);
		circleSingleLinkedList.ShowBoy();
	}	

}

class CircleSingleLinkedList{
	// 创建一个first节点,无编号
	private Boy first = new Boy(-1);
	
	public void addBoy(int nums) {
		if (nums < 1) {
			System.out.println("nums的值不正确");
			return;
		}
		
		//辅助指针 
		Boy cruBoy = null;
		for (int i = 1; i <=  nums; i++) {
			// 新的小孩节点
			Boy boy = new Boy(i);
			if (i == 1) {  // 第一个小孩特殊,需要让first指向第一个小孩,并且成环
				first = boy;  // 让first指向第一个小孩
				first.setNext(first);  // 成环
				cruBoy = first;  //让辅助指针指向第一个小孩
			}else {
				cruBoy.setNext(boy); //辅助指针指向新的小孩
				boy.setNext(first);  // 新的小孩指向第一个小孩,成环
				cruBoy = boy;   // 移动下一个节点
			}
		}
	}
	
	public void ShowBoy() {
		if (first == null ) { 
			System.out.println("空链表");
			return;
		}
		// 因为first不能动,需要一个辅助指针来遍历
		Boy cruBoy = first; 
		while(true) {
			System.out.printf("小孩的编号 %d\n" , cruBoy.getNo());
			if (cruBoy.getNext() == first) { // 已经遍历完一次
				break;
			}
			// 下移指针
			cruBoy = cruBoy.getNext();
		}
		
	}
}

class Boy{
	private int no;
	private Boy next;
	public Boy(int no) {
		super();
		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;
	}
	
	
}

测试结果

 约瑟夫小孩出圈的思路分析图

 

 代码如下:建议先看看思路和上面的图,再结合代码

package com.afmobi;

public class Josepfu {
	
	
	
	public static void main(String[] args) {
		CircleSingleLinkedList circleSingleLinkedList = new CircleSingleLinkedList();
		circleSingleLinkedList.addBoy(25);
		circleSingleLinkedList.ShowBoy();
		circleSingleLinkedList.countBoy(1, 2, 25);
		
	}	

}

class CircleSingleLinkedList{
	// 创建一个first节点,无编号
	private Boy first = new Boy(-1);
	
	/**
	 * @Description:  
	 * @param: @param startNo 表示从第几个小孩开始数数
	 * @param: @param countNum   数几下
	 * @param: @param boys     总的小孩数 
	 * @return: void      
	 * @throws
	 */
	public void countBoy(int startNo , int countNum,int boys) {
		 // 先校验数据
		if (first == null || startNo > boys || startNo < 1 || countNum < 1) {
			System.out.println("输入的参数有误!!!");
			return;
		}
		
		//1 需要创建一个辅助指针helper,事先应该指向环形链表的最后一个节点
		Boy helper = first;
		while (true) {
			if (helper.getNext() == first) { // 说明已经遍历到最后一个节点
				break;
			}
			helper= helper.getNext(); // 下移
		}
		//2 小孩報數前,先让first 和 help同时 移动 k - 1 次 
		for (int i = 0; i < startNo - 1; i++) {
			first = first.getNext();
			helper = helper.getNext();
		}
		
		//3当小孩报数时,让first 和 help 同时移动countNum -1次,然后出圈
		while (true) {
			if (helper == first) {  //说明圈中只有一个
				break;
			}
			// first 和 help 同时移动countNum -1
			for (int i = 0; i < countNum -1; i++) {
				first = first.getNext();
				helper = helper.getNext();
			}
			// 出圈的节点
			System.out.printf("小孩%d出圈\n", first.getNo());
			
			// 将first指向的小孩出圈
			first = first.getNext();
			helper.setNext(first);
		}
		
		System.out.printf("最后的小孩编号为%d\n",first.getNo());
	}
	
	public void addBoy(int nums) {
		if (nums < 1) {
			System.out.println("nums的值不正确");
			return;
		}
		
		//辅助指针 
		Boy cruBoy = null;
		for (int i = 1; i <=  nums; i++) {
			// 新的小孩节点
			Boy boy = new Boy(i);
			if (i == 1) {  // 第一个小孩特殊,需要让first指向第一个小孩,并且成环
				first = boy;  // 让first指向第一个小孩
				first.setNext(first);  // 成环
				cruBoy = first;  //让辅助指针指向第一个小孩
			}else {
				cruBoy.setNext(boy); //辅助指针指向新的小孩
				boy.setNext(first);  // 新的小孩指向第一个小孩,成环
				cruBoy = boy;   // 移动下一个节点
			}
		}
	}
	
	public void ShowBoy() {
		if (first == null ) { 
			System.out.println("空链表");
			return;
		}
		// 因为first不能动,需要一个辅助指针来遍历
		Boy cruBoy = first; 
		while(true) {
			System.out.printf("小孩的编号 %d\n" , cruBoy.getNo());
			if (cruBoy.getNext() == first) { // 已经遍历完一次
				break;
			}
			// 下移指针
			cruBoy = cruBoy.getNext();
		}
		
	}
}

class Boy{
	private int no;
	private Boy next;
	public Boy(int no) {
		super();
		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;
	}
	
	
}

测试结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值