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

原创 GraphLab Create Launcher 的安装

在turi.com下载exe安装文件后,如果出现闪退的问题.自行安装anaconda2+,可选最新版本,否则安装速度缓慢(有高速VPN无视此条)

2018-04-14 15:04:05 517

原创 BFS 非常可乐

#include struct point { int step; int bot[3]; }; int book[101][101][101] = {0}; struct point que[1000000]; int head , tail , s , m , n ; int b[3]; int flag; int Is (int x , int y , int z){

2017-09-21 13:19:06 173

原创 迷宫问题 BFS

#include typedef struct point{     int x;     int y;     int b; }POINT; int main() {     int maze[5][5] , book[5][5] = {0};     POINT que[50];     int nx , ny , tx , ty;     in

2017-09-20 15:10:43 180

原创 POJ 1321 棋盘问题 ; ( 1 )

#include int book[10]; char c[10][10]; int sum , step; int n , k ; void dfs (int s)//s表示行 因为每行每列都不可以有元素 所以一行为单位 {     int p;     if(step == k) {         sum ++;

2017-09-18 22:58:08 332

空空如也

空空如也

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

TA关注的人

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