- 博客(7)
- 资源 (3)
- 收藏
- 关注
原创 题目1448:Legal or Not
拓扑排序的题目 只要数组就可解决 #include #include int main() { int N,M,v[101][101]={0},x,y,b,i,j,k,sum,t,record[101]={0},size; while(scanf("%d %d",&N,&M)!=EOF) { if(N==0&&M==0) break;
2016-03-11 20:17:18
387
原创 九度OJ 1207:质因数的个数
刷机试题遇到了,觉得书上的方法太麻烦了,给出我的方法。 #include #include int zys(int n) { int t=sqrt(n); for(int i=2;i { if(n%i==0) { n=n/i; return zys(n)+1; } } return 1; } int main()
2016-03-07 19:39:46
334
原创 beans.xml配置
beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
2016-01-06 18:30:43
480
原创 Commondo
#include #include #include #include using namespace std; struct Job { int j,b; bool operator return j>x.j; } }; int main(){ //freopen("
2014-09-26 10:33:01
534
原创 The Dragon of Loowater
#include #include #include using namespace std; const int maxn=20000+5; int A[maxn],B[maxn]; int main(){ freopen("in.txt","r",stdin); freopen("out.txt","w",stdout);
2014-09-26 09:41:45
504
转载 Android Please ensure that adb is correctly located at问题解决
遇到问题描述: 运行android程序控制台输出 [2012-07-18 16:18:26 - ] The connection to adb is down, and a severe error has occured. [2012-07-18 16:18:26 - ] You must restart adb and Eclipse. [2012-07
2013-09-14 14:00:03
541
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅