用C语言实现八数码问题

#include<stdio.h> #include<conio.h>数组 int n,m; typedef struct Node { char matrix[10];/*存储矩阵*/ char operate;/*存储不能够进行的操做,L表明不能左移R表明不能右移U表明不能上移D表明不能下移*/ char extend;/*是否能够扩展,Y表明能够,N表明不能够*/ int  father;/
相关文章
相关标签/搜索