离散数学第6版25页41题
摘要:
本文章来自于博客园,其他地方出处可能是本人的日志同步 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 #define ROWS 17 5 #define COLS 17 6 7 char flag = 'a'; 8 char array[ROWS][COLS]; 9 int c_row, c_col; 10 int solution(int B_row, int B_col, 11 int row, int col, 12 int i_row, int i_col); 13 14 i... 阅读全文
posted @ 2011-09-12 21:19 samael 阅读(172) 评论(0) 推荐(0) 编辑