使用单向环形链表解决约瑟夫问题

约瑟夫问题是个有名的问题:N个人围成一圈,从第K个开始报数,第M个将被杀掉,最后剩下一个,其余人都将被杀掉。例如N=6,M=5,被杀掉的顺序是:5,4,6,2,3,1。
分析:
(1)由于对于每个人只有死和活两种状态,因此可以用布尔型数组标记每个人的状态,可用true表示死,false表示活。
(2)开始时每个人都是活的,所以数组初值全部赋为false。
(3)模拟杀人过程,直到所有人都被杀死为止。
单向循环链表:

package com.swh.data.ringliked;

import com.swh.data.DoubleLinkedList;

/**
 * 单向环形链表
 */

public class OneWayRingLinkedList {

    public static void main(String[] args) {
        OneWayRingLinked oneWayRingLinked = new OneWayRingLinked();
        oneWayRingLinked.addNode(1, "1");
        oneWayRingLinked.addNode(2, "2");
        oneWayRingLinked.addNode(3, "3");
        oneWayRingLinked.addNode(4, "4");
        oneWayRingLinked.addNode(5, "5");

        oneWayRingLinked.showJoseph(3, 2);

    }


    static class OneWayRingLinked {

        private Node node;


        public void addNode(int no, String text) {
            Node addNode = new Node(no, text);
            if (this.node == null) {
                this.node = addNode;
                this.node.next = this.node;
                return;
            }

            Node temp = this.node;

            while (true) {
                if (temp.next == this.node) {
                    temp.next = addNode;
                    addNode.next = node;
                    return;
                } else {
                    temp = temp.next;
                }
            }
        }

        // k 表示 第k个开始数数  m 表示数到第m个进行淘汰
        public void showJoseph(int k, int m) {

            if (node == null) {
                System.out.println("链表为空");
                return;
            }
            Node temp = node;
            int i = 1;
            int j = 1;

            while (true) {
                if (i == k) {
                    if (j == m) {
                        if (temp == temp.next) {
                            System.out.println("胜出者为:" + temp.toString());
                            return;
                        }
                        System.out.println("出局者为:" + temp.next.toString());
                        temp.next = temp.next.next;
                        j = 1;
                    } else {
                        temp = temp.next;
                        j++;
                    }

                } else {
                    i++;
                    temp = temp.next;
                }

            }


        }


    }


    static class Node {

        private int no;

        private String text;
        //双向链表的上一个元素
        private Node next;


        public Node(int no, String text) {
            this.no = no;
            this.text = text;
        }

        public int getNo() {
            return no;
        }

        public void setNo(int no) {
            this.no = no;
        }

        public String getText() {
            return text;
        }

        public void setText(String text) {
            this.text = text;
        }

        public Node getNext() {
            return next;
        }

        public void setNext(Node next) {
            this.next = next;
        }


        @Override
        public String toString() {
            return "Node{" +
                    "no=" + no +
                    ", text='" + text + '\'' +
                    '}';
        }
    }


}

你可能感兴趣的:(使用单向环形链表解决约瑟夫问题)