数据结构
古城月雨细
这个作者很懒,什么都没留下…
展开
-
马踏棋盘算法(回溯算法、X*Y图的邻接矩阵深度优先遍历)
马踏棋盘算法(回溯算法、X*Y图的邻接矩阵深度优先遍历)#include <stdio.h>#include <time.h>#define X 8#define Y 8int chess[X][Y];//找到基于(x,y)位置的下一个可走的位置int nextxy(int* x,int* y,int count){ switch(count) { case 0:原创 2016-05-11 13:24:43 · 1713 阅读 · 0 评论 -
图的深度优先遍历(用邻接矩阵表示图)
图的深度优先遍历(用邻接矩阵表示图)#include <stdio.h>#include <stdlib.h>void bianli(bool students[8][8],int student[8],int i,bool temp[8]){ printf("%d\n",student[i]); temp[i]=0; for(int j=0;j<8;j++)原创 2016-05-11 19:16:37 · 2729 阅读 · 0 评论