摘要: 一、N-QueensII 1 class Solution { 2 public: 3 int totalNQueens(int n) { 4 int total = 0; 5 vector v(n,0); 6 dfs(0,n,total,v)... 阅读全文
posted @ 2015-11-23 22:12 wxquare 阅读(179) 评论(0) 推荐(0) 编辑