目前共有1篇帖子。 内容转换:不转换▼
 
点击 回复
282 0
【试题】振兴中华
一派护法 十九级
1楼 发表于:2016-3-19 11:11
#include <stdio.h>
#include <string.h>

char *str[] = {"从我做起振", "我做起振兴", "做起振兴中", "起振兴中华"};
char buffer[30];
int cnt = 0;

void search(char *pStr, int x = 0, int y = 0)
{
    *pStr = str[y][x * 2];
    *(pStr + 1) = str[y][x * 2 + 1];
    if (x < 4)
        search(pStr + 2, x + 1, y);
    if (y < 3)
        search(pStr + 2, x, y + 1);

    if (x == 4 && y == 3)
    {
        *(pStr + 2) = '\0';
        if (strcmp(buffer, "从我做起振兴中华") == 0)
            cnt++;
    }
}

int main(void)
{
    search(buffer);
    printf("%d\n", cnt);
    return 0;
}

答案:35

回复帖子

内容:
用户名: 您目前是匿名发表
验证码:
(快捷键:Ctrl+Enter)
 

本帖信息

点击数:282 回复数:0
评论数: ?
作者:巨大八爪鱼
最后回复:巨大八爪鱼
最后回复时间:2016-3-19 11:11
 
©2010-2024 Arslanbar Ver2.0
除非另有声明,本站采用知识共享署名-相同方式共享 3.0 Unported许可协议进行许可。