自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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

原创 图形学卡通人物绘制以及交互操作

图形学学习过程中的一次实验,网上学习了很多,做了出来,分享一下

2015-04-29 15:59:42 3310

原创 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

课程设计-xml编辑器

课程设计-xml编辑器,实现了xml编辑器的一般功能,因为是大一时的作业,和专业的编辑器无法相比的。

2013-06-02

cocos2d-x 大富翁

cocos2d-x 2.1.5 vs2012 开发 基本实现了大富翁的功能 纯原创

2014-10-26

cocos2d-x 2.1.4 魔塔

vs2012 c++ 功能基本实现 图片资源非原创

2014-04-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除