标签:blog io ar os for on 2014 问题 log
中国象棋里面双方的“将”和“帅”各自呆在自己的九宫格里,一步只能横移或纵移一格,而且双方不能见面(既不能处在同一条纵线上)。在残局时有的人会用这一规则走出绝妙杀招。假设一方的“将”为A,另一方的“帅”为B,现在求双方所能出现的所有合法位置,所需变量只能用一个字节来保存。
#include <stdio.h> int main(void) { unsigned char chPos = 0x11; for ( ; (chPos & 0x0f) <= 9 ; chPos += 0x01) { for ( ; (chPos >> 4) <= 9 ; chPos += 0x10) { if (((chPos & 0x0f) - 1) % 3 == (((chPos >> 4) - 1) % 3)) continue; printf ("B = (%c , %d) A = (%c , %d)\n" , 'd' + ((chPos & 0x0f) - 1) % 3 , 1 + ((chPos & 0x0f) - 1) / 3 , 'd' + ((chPos >> 4) - 1) % 3 , 8 + ((chPos >> 4) - 1 ) / 3 ); } chPos &= 0x0F; chPos |= 0x10 ; } return 0; }
标签:blog io ar os for on 2014 问题 log
原文地址:http://blog.csdn.net/u012458164/article/details/41621239