Problem:
This problem is based upon a report by the historian Joseph ben Matthias (Josephus) on the
outcome of a suicide pact that he had made between himself and 40 soldiers as they were
besieged by superior Roman forces in 67 A.D. Josephus proposed that each man slay his neighbor.
This scheme necessarily leaves one to kill himself. Josephus cleverly contrived to be that
one, thus surviving to tell the tale.
outcome of a suicide pact that he had made between himself and 40 soldiers as they were
besieged by superior Roman forces in 67 A.D. Josephus proposed that each man slay his neighbor.
This scheme necessarily leaves one to kill himself. Josephus cleverly contrived to be that
one, thus surviving to tell the tale.
Output:
[A, B, C, D, E, F, G, H, I, J, K]
A killed B
C killed D
E killed F
G killed H
I killed J
K killed A
C killed E
G killed I
K killed C
G killed K
The lone survivor is G
A killed B
C killed D
E killed F
G killed H
I killed J
K killed A
C killed E
G killed I
K killed C
G killed K
The lone survivor is G
Solution:
public class Josephus { public static final int SOLDIERS = 8; public static final String ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; public static void main(String[] args) { Ring<String> ring = new Ring<String>(); for (int i=0; i<SOLDIERS; i++) { ring.add(ALPHA.substring(i, i+1)); } System.out.println(ring); Iterator<String> it = ring.iterator(); String killer = it.next(); while (ring.size() > 1) { String victim = it.next(); System.out.println(killer + " killed " + victim); it.remove(); killer = it.next(); } System.out.println("The lone survivor is " + it.next()); } }
No comments :
Post a Comment