八皇后,回溯算法
摘要:
public class Queue_8 { public int size = 4; //queue i can locate at (i,loc[i]) public int loc[] = new int[size+1]; // 求第k个元素,放置的位置, 与已经放过的皇后比较,如果它们在... 阅读全文
posted @ 2015-07-28 10:38 zxahu 阅读(134) 评论(0) 推荐(0) 编辑