自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 uva227

#include <iostream> #include<stdio.h> #include<cstring> using namespace std; char puzzle[5][5]; char buf[10]; char order[1001]; int cnt=0; int main() { while(1) { memse...

2018-11-11 19:49:12 114

原创 minimum-depth-of-binary-tree

利用二叉树的递归版的深搜可解 class Solution { public: int DFS(TreeNode* root){ if(root==nullptr) return 0; if(root->left==nullptr&&root->right==nullptr) r...

2018-11-09 21:39:23 125

原创 UVa

#include<iostream> #include<algorithm> #include<string> #include<sstream> #include<set> #include<vector> #include<stack> #include<map> #include

2018-10-10 21:17:31 320

原创 列车调度(Train)

#include "stdio.h" #include <string> #include<iostream> using namespace std; int main() { int m, n; scanf("%d %d", &n, &m); int* sequence = new int[n]; for (int i = 0; i != n;...

2018-03-10 23:11:13 683

空空如也

空空如也

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

TA关注的人

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