Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the following method of picking a number from an array. Choose a positive integer n. Visit n elements of the array (looping around if necessary) and delete the nth element visited. Repeat the process starting with the element after the one just deleted until only one element remains. That will be the chosen element. Write a function named choose that accepts an integer array and an integer n, and returns an element from the array using n as described above. Function signature should look like int choose(int[ ] a, int n) Examples

choose(new int[]{1, 2, 3, 4, 5}, 1) will proceed as follows
12345 visit 1, delete 1 to get *2345
*2345 visit 2, delete 2 to get **345
**345 visit 3, delete 3 to get ***45
***45 visit 4, delete 4 to get ****5
****5 only 5 remains so return 5 
choose(new int[]{1, 2, 3, 4, 5}, 2) will proceed as follows
12345 visit 1, 2 and delete 2 to get 1*345
1*345 visit 3, 4 and delete 4 to get 1*3*5
1*3*5 visit 5, 1 and delete 1 to get **3*5
**3*5 visit 3, 5 and delete 5 to get **3**
**3** only 3 remains so return 3. 
choose(new int[]{1, 2, 3, 4, 5}, 3) will proceed as follows
12345 visit 1, 2, 3 and delete 3 to get 12*45
12*45 visit 4, 5, 1 and delete 1 to get *2*45
*2*45 visit 2, 4, 5 and delete 5 to get *2*4*
*2*4* visit 2, 4, 2 and delete 2 to get ***4*
***4* only 4 remains so return 4 
choose(new int[]{1, 2, 3, 4, 5}, 4) will proceed as follows
12345 visit 1, 2, 3, 4 and delete 4 to get 123*5
123*5 visit 5, 1, 2, 3 and delete 3 to get 12**5
12**5 visit 5, 1, 2, 5 and delete 5 to get 12***
12*** visit 1, 2, 1, 2 and delete 2 to get 1****
1**** only 1 remains so return 1 
choose(new int[]{1, 2, 3, 4, 5}, 5) will proceed as follows
12345 visit 1, 2, 3, 4, 5 and delete 5 to get 1234*
1234* visit 1, 2, 3, 4, 1 and delete 1 to get *234*
*234* visit 2, 3, 4, 2, 3 and delete 3 to get *2*4*
*2*4* visit 4, 2, 4, 2, 4 and delete 4 to get *2***
*2*** only 2 remains so return 2 
choose(new int[]{1, 2, 3, 4, 5}, 6) will proceed as follows
12345 visit 1, 2, 3, 4, 5, 1 and delete 1 to get *2345
*2345 visit 2, 3, 4, 5, 2, 3 and delete 3 to get *2*45
*2*45 visit 4, 5, 2, 4, 5, 2 and delete 2 to get ***45
***45 visit 4, 5, 4, 5, 4, 5 and delete 5 to get ***4*
***4* only 4 remains so return 4 
share|improve this question
7  
I smell homework... – Oren Jan 20 at 9:08
I need the size of the array to do this. the signature must change ofcourse. – sr01853 Jan 20 at 9:09
This is Josephus problem. Search Wikipedia for the solution for different cases. – nhahtdh Jan 20 at 9:16
1  
possible duplicate: stackoverflow.com/questions/3810789/… – nhahtdh Jan 20 at 9:25

closed as not a real question by Macmade, nhahtdh, interjay, CharlesB, borrible Jan 20 at 10:43

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You want to use 1) an array which holds the "normal" and "deleted" statuses of each array item; 2) an iterator function which will return the appropriate index skipping n items and taking deleted into consideration How you will implement it depends on the language, is this your homework?

share|improve this answer

I just tried your question using recursion. Instead of using a for loop for iterating, I just used the modulo operator to get the required number to be deleted.

  int choose(int[ ] a, int size,int n)
  {
    if (size == 1)
      return a[0];
    else 
    {
      if(n <= size)
        {
          index = n - 1;
        }
      else
        {
          index = (n%size) - 1;
        }
      while(index + 1 < size) 
        {
          a[index] = a[index+1];
          index++;
        }
      --size;
    }
    return(choose(a,size,n));
  }
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.