摘要:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=u 阅读全文
摘要:
直接上代码,可以自己慢慢研究#include <iostream>#include <stdlib.h>using namespace std;int LineNum[9]; //第i列的皇后要放的行位置(只用其中的列号1到8)bool a[9]; //a[i]为1表示第i行上尚未放皇后bool b[15]; //b[i]为1表示第i条斜对角线上尚未放皇后(斜对角线指的是"/"状对角线,该对角线上各点的行列号之和i+j为一个常数)bool c[15]; //c[i]为1表示第i条反斜对角线... 阅读全文
摘要:
#include <iostream>#include <cstdlib>using namespace std;const int DefaultSize=100;template <class T>struct Trituple{ int row,col; T value; Trituple<T>& operator =(Trituple<T>& x){ row=x.row;col=x.rol;value=x.value; }};template <class T>class SparseMatrix{ 阅读全文
摘要:
全代码直接来吧import java.awt.BorderLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import javax 阅读全文