上一页 1 ··· 4 5 6 7 8
摘要: <!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 阅读全文
posted @ 2013-04-09 22:32 强子~Developer 阅读(204) 评论(2) 推荐(0) 编辑
摘要: 直接上代码,可以自己慢慢研究#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条反斜对角线... 阅读全文
posted @ 2013-04-09 22:24 强子~Developer 阅读(343) 评论(0) 推荐(0) 编辑
摘要: #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{ 阅读全文
posted @ 2013-04-09 22:23 强子~Developer 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 全代码直接来吧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 阅读全文
posted @ 2013-04-09 22:09 强子~Developer 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 123456789九个数,期间可以加+-号得到一个代数式子,结果为110求算法 阅读全文
posted @ 2013-03-05 10:54 强子~Developer 阅读(83) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2012-12-23 20:34 强子~Developer 阅读(11) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2012-12-23 20:32 强子~Developer 阅读(4) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2012-12-23 20:30 强子~Developer 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package com.bq.listener;//导入有关类import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.os.Bundle;import android.telephony.SmsMessage;import android.widget.Toast;public class receive extends BroadcastReceiver{ String receiveMsg="" 阅读全文
posted @ 2012-12-22 23:23 强子~Developer 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8