自定义博客皮肤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)
  • 收藏
  • 关注

原创 anaconda的使用

创建环境: conda create --name tf_environment python=3.6安装:pip install --upgrade --ignore-installed tensorflow

2019-07-03 13:18:28 242

原创 Poj2488_深度优先搜索+回溯

#define LOCAL#include<stdio.h>#include <string.h>const int movex[10] = {-2, -2, -1, -1, 1, 1, 2, 2};const int movey[10] = {-1, 1, -2, 2, -2, 2, -1, 1};const char Letter[20] = {'1', '...

2019-03-10 21:34:10 270

原创 Poj1062_Dijkstra算法

//#define LOCAL#include<cstdio>#include<string.h>#include<limits.h>#include<stdlib.h>using namespace std;int main() {#ifdef LOCAL freopen("data.in&amp

2019-03-10 11:14:24 214

原创 Poj3278_BFS抓牛

_ _#include <iostream>#include <queue>#include <string.h>using namespace std;struct point{ int num; int step; point(int x,int y):num(x),step(y){};};int a[100002...

2019-03-09 12:17:23 270

原创 Poj1094_拓扑排序问题

//#define LOCAL#include<cstdio>#include<stack>#include<string.h>#include<iostream>//#include&am

2019-03-05 20:05:01 266

空空如也

空空如也

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

TA关注的人

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