自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (4)
  • 收藏
  • 关注

原创 uva 10562 - Undraw the Trees

#include #include #include #include #include using namespace std; void dfs(char s[210][210], int x, int y, int dep) { for(int i = y; s[x][i] == '-'; ++i) if(s[x+1][i] != ' ' && s[x+1

2013-12-03 12:44:16 515

原创 uva 327 - Evaluating Simple C Expressions

#include #include #include #include #include #include using namespace std; int main() { char s1[11000]; while(gets(s1) != NULL) { printf("Expression: %s\n", s1); int

2013-12-02 17:30:01 467

原创 UVA 699 - The Falling Leaves

#include #include #include #include using namespace std; int a[210][210]; int sum[210]; void creat(int dep, int mid) { int x; scanf("%d", &x); if(x == -1) return; else { a[

2013-12-02 07:39:12 477

原创 uva 839 - Not so Mobile

#include #include #include #define maxn 20000+10 using namespace std; struct node { int data; int ld, rd; node *l, *r; }; bool ok; void dfs(node *t) { if(!ok) return; if(t == NU

2013-12-01 20:10:45 452

原创 UVA 297 - Quadtrees

#include #include #include #include #define maxn 20000+10 using namespace std; struct node { int data, flag; node *ll, *l, *r, *rr; }; int tmpi; node* &build(int cur, char *s) { node *

2013-12-01 20:08:26 474

Hibernate中文手册

Hibernate中文手册

2015-07-30

ibatis jar 包

ibatis jar 包

2015-07-30

spring 源码

spring mvc源码

2015-07-30

多校第四场1001标程

2014多校1001标程,里面有详细的注释,还有等,其实没什么了,懂的一看就懂

2014-08-18

空空如也

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

TA关注的人

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