-206. Card Shuffling

I'm a slow walker, but I never walk backwards.

題目來源:judgegirl from ntu prof. pangfeng Liu

Task Description

Write a program to simulate shuffling a deck of cards. We will use an array of pointers to represent a deck of card. A card is an integer from 1 to 10000, and the -th element of this array represent the -th card in a deck of cards. That is, if the -th card in the deck is 6, then the -th pointer in the pointer will point to an integer whose value is 6. If a pointer has NULL then it is the end of deck, and there are no more cards after it, so it is like an "end of deck". We also assume that there will be no more than cards in a deck.

Now we want to shuffle a deck of cards. First we cut the deck into two halves. The first half has the first cards and the second half has the remaining cards. For example, if there are 9 cards then the first half has 5 cards and the second half has 4 cards. Then we shuffle these two halves into one by placing the first card from the first half as the first card, the first card from the second half as the second card, the second card from the first half as the third card, etc. That is, we interleave these two halves back into a deck of cards. The prototype of this shuffling function is as follows.

1
void shuffle(int *deck[]);

We also need to be able to print a deck of cards. For this we need the following print_deck function, which will print the cards according to their order in the deck in a single line, with a space between two cards. Note that you will know there are no more cards by the "end of deck".

1
void print(int *deck[]);

A sample main program is as follows. Please finish the program by providing the implementation of shuffle and print.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include "card.h"
int main()
{
int card[10000];
int *deck[10000];
int index = 0;
while (scanf("%d", &(card[index])) != EOF) {
deck[index] = &(card[index]);
index++;
}
deck[index] = NULL;
shuffle(deck);
print(deck);
return 0;
}

Sample input

1 2 3 4 5

Sample Output

1 4 2 5 3

Hint

第二點測資是空檔

Submit

Login

Testdata Set

Download Testdata