- 博客(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&
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关注的人
RSS订阅