图深度遍历的一题
摘要:
本文章原发于博客园,其他可能是本人的日志同步问题: 输入一个n*n的方块,统计连块的个数,连块就是有公共的边或者顶点代码:mat = []def init_mat(n): for i in range(0,n+2): # add the edge of the mat mat.append([0] * (n+2)) define_mat(n+1)def define_mat(n): c = 0 stop = 'n' while stop != 'y': row = input("row?: ") col =... 阅读全文
posted @ 2011-10-19 15:08 samael 阅读(195) 评论(0) 推荐(0) 编辑