- 论坛徽章:
- 5
|
本帖最后由 starwing83 于 2012-10-22 20:33 编辑
我自己写了一个,要不要评析一下?- #include <assert.h>
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #define GUESS_NUM 4
- #define GAME_COUNT 10
- int check(const char nums[], const char guess[], size_t n, int *pb) {
- int i, a = 0, b = 0;
- for (i = 0; i < n; ++i) {
- if (nums[i] == guess[i])
- ++a;
- else if (strchr(nums, guess[i]) != NULL)
- ++b;
- }
- if (pb) *pb = b;
- return a;
- }
- void cswap(char *a, char *b) {
- char tmp = *a;
- *a = *b;
- *b = tmp;
- }
- void generate(char d[], size_t n) {
- char nums[] = "1234567890";
- int i, cnt = sizeof(nums) - 2;
- assert(n >= 1 && n <= cnt);
- *d++ = nums[i = rand() % cnt]; /* from 1 to 9 */
- cswap(nums+i, nums+cnt); /* remove nums[i] from 0~cnt */
- while (--n) {
- *d++ = nums[i = rand() % cnt]; /* from 1 to cnt */
- cswap(nums+i, nums+cnt); /* remove nums[i] from 0~cnt */
- --cnt; /* drop nums[cnt] */
- }
- *d++ = '\0';
- }
- int checkinput(const char buff[], size_t n) {
- int mask = 0;
- size_t i;
- for (i = 0; i < n; ++i) {
- if (!isdigit(buff[i])) {
- fprintf(stderr, "not number, retry: ");
- return 0;
- }
- if ((mask & (1 << (buff[i] - '0'))) != 0) {
- fprintf(stderr, "duplicate number, retry: ");
- return 0;
- }
- mask |= 1 << (buff[i] - '0');
- }
- return 1;
- }
- int getline(char buff[], size_t n) {
- char tmp[BUFSIZ];
- retry:
- if (fgets(buff, n+1, stdin) == NULL)
- return 0;
- if (strlen(buff) != n || buff[n-1] == '\n') {
- fprintf(stderr, "expect %d number, retry: ", (int)n);
- goto retry;
- }
- while (fgets(tmp, BUFSIZ, stdin) != NULL &&
- strlen(tmp) == BUFSIZ-1 &&
- tmp[BUFSIZ-1] != '\n')
- ;
- if (!checkinput(buff, n))
- goto retry;
- return 1;
- }
- int main(void) {
- char nums[GUESS_NUM+1], guess[GUESS_NUM+1];
- int i = 0;
- srand((unsigned)time(NULL));
- generate(nums, GUESS_NUM);
- printf("-- Guess Number --\n");
- for (i = 0; i < GAME_COUNT; ++i) {
- int a, b;
- fprintf(stderr, "times %d/%d: ", i+1, GAME_COUNT);
- if (!getline(guess, GUESS_NUM))
- return 1;
- a = check(nums, guess, GUESS_NUM, &b);
- printf("%dA%dB\n", a, b);
- if (a == GUESS_NUM) {
- printf("win!\n");
- return 0;
- }
- }
- printf("fail! answer is %s\n", nums);
- return 1;
- }
复制代码 已修改,修改了,提示,去掉了memmove。 |
|