Question

In: Computer Science

c++ The problem is known as the Josephus Problem (or Josephus permutation) and postulates a group...

c++ The problem is known as the Josephus Problem (or Josephus permutation) and postulates a group of people of size N >= 1 are standing in a circle waiting to be eliminated. Counting begins at a specified point in the circle and proceeds around the circle in a specified direction. After a specified number of M >= 1 people are counted, the M^th person in the circle is eliminated. The procedure is repeated with the remaining people, starting with the next person, going in the same direction and counting the same number of people, until only one person remains.

For example, suppose that M = 3 and there are N = 5 people named A, B, C, D and E. We count three people starting at A, so that C is eliminated first. We then begin at D and count D, E and back to A, so that A is eliminated next. Then we count B, D and E, and finally B, D and B, so that D is the one who remains last.

For this computer assignment, you are to write and implement a C++ program to simulate and solve the Josephus problem. The input to the program is the number M and a list of N names, which is clockwise ordering of the circle, beginning with the person from whom the count is to start. After each removal, the program should print the names of all people in the circle until only one person remains. However, to save printing space, print the names of the remaining people only after K >= 1 eliminations, where K is also an input argument to the program. The input arguments N, M and K can be entered from stdin in the given order. (see josephus.d for values)

Programming Notes:

  • Name the people in the circle in the following sequence: A1, A2 ... A9, B1, B2 ... B9, C1, C2 ..., and start counting from the person A1. Enter input values N, M and K when the program prompts for them and use a list<string> container to store the names of N people.

  • void init_vals(list<string> &L, args &in) It reads the input values N, M and K of the struct args in when the program prompts for them. The routine prints out those values on stdout, and fills the names of people in the list L. You can find the definition of the struct args in the header file josephus.h, which is defined as:

struct args 
{
        unsigned N;
        unsigned M;
        unsigned K;
}; 
  • void print_list(const list<string> &L, const unsigned &cnt) It prints out the contents of the list L at the beginning and after removing K names (each time) from the list, until only one name remains in the list, where cnt has an initial value 0 and it indicates the total number of removals so far. At the end, it also prints the name of the last remaining person. For printout, print only up to 12 names in a single line, where the names are separated by single spaces.

  • The main() routine first calls the routine init_vals() and initializes cnt to 0, and then calls the print_list() to print out the names of people in circle. After that it locates the M^th person in the list, and using the member function erase(), it removes that person from the list, and by calling the print_list() prints out the current contents of the list. This process continues (in a loop) until only one person remains in the list.

    • If i (with initial value 0) indicates the position of a person in list L, then the statement: j = (i + (M –1))%L.size() returns the position of the M^th person from the position i.

    • Since the argument to the erase() function is an iterator, you can convert the index value j to an iterator by the advance(p, j) function, where p = L.begin().

  • To store the names in an empty list, first change the size of the list to N, and then use the generate() function in the STL. The last argument to this function is the function object SEQ(N), which is defined in the header file josephus.h.

Assignment Notes:

  • Include any necessary headers and add necessary global constants.

  • You are not allowed to use any I/O functions from the C library, such as scanf or printf. Instead, use the I/O functions from the C++ library, such as cin or cout.

Solutions

Expert Solution

C++ program for the famous josephus problem:

#include <iostream>

using namespace std;

void josephus(int len, int k)
{
    if(k < 1 || len < 1){
        cout << "len and k cannont less than 1" << endl;
        return;
    }

    bool *jose = new bool[len];

    for(int i = 0; i < len; i ++){
        jose[i] = true;
    }

    int remain = len;
    int idx = 0;
    int num = 0;

    while(remain > 1){

        while(jose[idx] != true){
            idx ++;
            if(idx == len){
                idx = 0;
            }
        }

        if(num == k - 1){
            jose[idx] = false;
            cout.width(4);
            cout << idx << endl;
            remain --;
        }

        num ++;
        if(num == k){
            num = 0;
        }

        idx ++;
        if(idx == len){
            idx = 0;
        }
    }

    for(int i = 0; i < len; i++)
    {
        if(jose[i] == true){
            cout.width(4);
            cout <<  i ;
            cout << " is the winner! " << endl;
        }
    }
    delete[] jose;
}


int main(int argc, char* argv[])
{
    int n,k;
    cin>>n>>k;
    josephus(n,k);
 return 0;
}

Related Solutions

The problem is known as the Josephus Problem (or Josephus permutation) and postulates a group of...
The problem is known as the Josephus Problem (or Josephus permutation) and postulates a group of people of size N >= 1 are standing in a circle waiting to be eliminated. Counting begins at a specified point in the circle and proceeds around the circle in a specified direction. After a specified number of M >= 1 people are counted, the M^th person in the circle is eliminated. The procedure is repeated with the remaining people, starting with the next...
C# Palindrome Permutation: Given a string, write a function to check if it is a permutation...
C# Palindrome Permutation: Given a string, write a function to check if it is a permutation of a palindrome. A palindrome is a word or phrase that is the same forwards and backwards. A permutation is a rearrangement of letters. The palindrome does not need to be limited to just dictionary words. Input: Tact Coa Output: True (permutations: "taco cat", "atco cta", etc.) Comment your code to explain it.
Building on Group Theory #1(topics of "Operators and Postulates" under Group Theory) for the following 3...
Building on Group Theory #1(topics of "Operators and Postulates" under Group Theory) for the following 3 postulates: 1) Commutative, 2) Distributive, 3) Associative: Give 2 examples for each not provided on the website (Tutorial point) with your own explanation and only own answer appreciated.
Permutation.
A bag contains 2 apples, 3 oranges, and 4 bananas. The number of ways in which 3 fruits can be selected if atleast one banana is always in the combination (Assume fruits of same species to be alike) is
Find a subgroup G in symmetric (permutation) group Sn such that (1) n = 4 and...
Find a subgroup G in symmetric (permutation) group Sn such that (1) n = 4 and G is abelian noncyclic group (2) n = 8 and G is dihedral group.
1) What permutation group is pentagon D5 a subgroup of ?why? 2) What is a generating...
1) What permutation group is pentagon D5 a subgroup of ?why? 2) What is a generating set of pentagon D5? Why? Is it a minimal generating set?Why or why not? 3) What is not a generating set of pentagon D5? Why?
5.1 Combination and permutation a) 5C2 b) 5! c) Five different drugs, A, B, C, D,...
5.1 Combination and permutation a) 5C2 b) 5! c) Five different drugs, A, B, C, D, and E, can be used to treat a disease in different combinations. If a physician uses two of them to treat patients, how many combinations are possible? List all such combinations. d) Four different exercises, A, B, C, and D, are recommended for an injury recover therapy program. The therapists want to know whether there is a different treatment effect using i) just one;...
1)Find the permutation and combination of the letters a, b, c, d taking 2 at a...
1)Find the permutation and combination of the letters a, b, c, d taking 2 at a time. Verify your answers with the permutation & combination formula.2) 2.An urn contains 10 marbles. 3 blues, 4 yellow and 3 red marbles. 6 marbles is selected at random. Find the probability of picking 1 blue, 3 yellow marbles and 2 red ones. 3) A computer operator has to issue passwords made up of a letter followed by two digits. How many passwords are...
Koch’s postulates are not applicable to (a) diptheria (b) cholera (c) TB (d) leprosy.
Koch’s postulates are not applicable to (a) diptheria (b) cholera (c) TB (d) leprosy.
Give 2 examples for each using postulates. (Group theory) 1)Semi_Group, 2)Monoid, 3)Group with your own explanation...
Give 2 examples for each using postulates. (Group theory) 1)Semi_Group, 2)Monoid, 3)Group with your own explanation and own answers are appreciated. Do not copy and paste.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT