自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

L_Aster的专栏

相逢的人会再相逢

  • 博客(4)
  • 收藏
  • 关注

原创 1130. Infix Expression (25)

1130. Infix Expression (25)#include <iostream> #include <string> using namespace std; int r; struct node { string data; int left,right; }T[24]; int FindRoot(int a[],const int n) { for(int i

2017-04-26 19:06:37 575

原创 1129. Recommendation System (25)

1129. Recommendation System (25)#include <iostream> #include <map> #include <set> using namespace std; struct node { int w,cnt; node(int e,int n):w(e),cnt(n){}; bool operator <(const node &

2017-04-26 17:30:57 354

原创 1128. N Queens Puzzle (20)

1128. N Queens Puzzle (20)#include <iostream> #include <cmath> using namespace std; bool Solve(int a[],int n) { int i=1; while(i<=n) { for(int j=1;j<i;++j) { if(

2017-04-20 22:45:31 340

原创 Bootstrap表格内容垂直水平居中

.table th, .table td { text-align: center; vertical-align: middle!important; }

2017-04-05 19:48:31 7973

空空如也

空空如也

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

TA关注的人

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