摘要:
error_reporting(E_ALL || ~E_NOTICE); 阅读全文
摘要:
1 3 1 2 32 6 -1 4 -2 3 -2 34 6 -1 4 -2 3 -2 3#include <stdio.h>#include <string.h>#define N 1000005int dp[N][N];int num[N];int t[2][N];int n , m ;int max(int a ,int b){return a>b?a:b;}int not(int i){return i==1?0:1;}int main(){int i , j , k ;while(scanf("%d %d",&m,&n 阅读全文
摘要:
任务是这样的 想把现有的xml形式的考研词库 导入到sqlite以备android开发之用原本的思路是这样的 先用java编程将xml文件导入mysql 然后 再导出.sql文件 用.read xx.sql命令导入sqlite没想到在连接mysql 导出sql文件的时候发现支持连接sqlite数据库 , 而且还可以导入XML文件 , 整个导入过程还很具有可控性 ,不错 ,利器啊。 阅读全文
摘要:
#include <stdio.h>#include <string.h>#define N 1001int ufs[N];int rank[N];bool rec[N];int getFather(int n){if(ufs[n]!=n) ufs[n]=getFather(ufs[n]);return ufs[n];}int merge(int a, int b){int ta=getFather(a) ;int tb=getFather(b) ;if(ta != tb)ufs[ta] = tb;return 0; }void count(int n){int i;i 阅读全文
摘要:
1.FirstInstall Nasm And Bochs Code the boot.asm2.use nasm to make the .Bin filecmd: nasm boot.asm -o boot.bin3.next stepcreate an img file.Cmd:bximageChoose fdChoose typeDefine the nameDone.4.then write the boot.bin to a.imgdd if=boot.bin of=a.img bs=512 count=1conv=notrunc5.cd Bochs and Edit Opti.. 阅读全文
摘要:
1 public void read(Element e) { 2 if (e.nodeCount() > 0) { 3 Iterator<?> it = e.elementIterator(); 4 while (it.hasNext()) { 5 Element ele = (Element) it.next(); 6 read(ele); 7 System.out.println("Element :" + ele.getName() + " Path " 8 + ele.getUniquePath()); 9 10 if (el 阅读全文
摘要:
我用的ECLIPSE 3.6 HELIOS版本、 安装ADT以后一切使用正常,唯一不足的就是自动提示的时候容易无法响应, 网上说这个是个BUG 问题出在核心包org.eclipse.jdt.core_3.6.1.v_A68_R36x.jar 上上网下了个可以用的 4390KB的那个 替换掉PLUGIN里面的 重启后就好了下面这篇文章是解决这个问题的方法http://stackoverflow.com/questions/4975827/eclipse-3-6-frequently-stalls-on-auto-complete顺便查了一下 ECLIPSE的版本号和代号Eclipse 3.1 版 阅读全文
摘要:
一直以来想把ANDROID2.1 刷成2.2 今天端午假期正好有空于是就准备了一下开始刷机一开始看到官网上有升级的UPDATE.ZIP 以为挺好的, 没想到还没刷到一半就出现了两个错误1.can't open /cache/recovery/command (这个问题不是问题 第二个才是)2.assert failed:apply_patch_check("/system/app/4in1.apk","4180490fc6c42ca8e76239c861c8a87cb53e875b5","761e43e8c3eaa4191f77fa66 阅读全文
摘要:
1 #include <iostream> 2 3 using namespace std; 4 5 int main(){ 6 int a,b,c; 7 int f[100]; 8 int i; 9 while(cin>>a>>b>>c,a+b+c){10 f[1]=f[2]=1;11 for(i=3;i<100;i++){12 13 f[i]=(f[i-1]*a+f[i-2]*b)%7;14 15 if(f[i]==1&&f[i-1]==1) break;16 //cout<<f[i-2]<<en 阅读全文
摘要:
1 #include <iostream> 2 #include <string> 3 #include <vector> 4 using namespace std; 5 struct v{ 6 string s; 7 int value; 8 }; 9 10 vector<v> vv;11 vector<v> ::iterator it;12 13 int main(){14 int n;15 string s;16 string r;17 int i;18 int max=0;19 int find=0;20 21 while( 阅读全文