上一页 1 ··· 10 11 12 13 14
摘要: //除余加密//由于被除数与余数同余,而且均小于28,则相互mod相同#include<iostream>#include<string>using namespace std;char st[100],en[100];int stnum[100],ennum[100];int main(){ int i,k,len,pos; while(cin>>k &... 阅读全文
posted @ 2010-05-11 10:00 VRS 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std;int st[105][105];int row[105],col[105];int main(){ int n; while(cin>>n && n!=0) { int i,j; for(i=0;i<n;i++) { row[i]=0; col[i]=0; } f... 阅读全文
posted @ 2010-05-11 09:59 VRS 阅读(191) 评论(0) 推荐(0) 编辑
摘要: /////////////////////////////////////////////////最大堡垒数//用回溯法(其实是N皇后问题的改装)+暴力A掉#include<iostream>#include<math.h>using namespace std;char a[5][5];//堡垒类,方便对成员的访问class Blockhouses{ friend int... 阅读全文
posted @ 2010-05-11 01:21 VRS 阅读(260) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdarg.h>//要包含这个头文件void variable(int i, ...){int j = 0; va_list arg_ptr;//第1步,定义这个指向参数列表的变量 va_start(arg_ptr, i);//第2步,把上面这个变量初始化.即让它指向参数列表while( j != -1 ) {//第... 阅读全文
posted @ 2010-05-10 19:00 VRS 阅读(2181) 评论(0) 推荐(0) 编辑
摘要: 内存函数 阅读全文
posted @ 2010-05-10 17:44 VRS 阅读(1027) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14