- 博客(3)
- 问答 (1)
- 收藏
- 关注
原创 DBeaver遇到的问题
下载地址:https://dbeaver.io/download 选择免费的社区版(DBeaver Community)
2023-07-23 17:07:42
346
原创 2021-11-16
#include<stdio.h> #define MaxSize 100 #define M 4 #define N 4 typedef struct { int i,j; //方块在迷宫中的坐标位置(i,j) int pre; //本路径中上一方块在队列中的下标 } SqQueue; SqQueue Qu[MaxSize]; //定义顺序非循环队列 int front=0,rear=0; int mg[M+2][N+2]= { {
2021-11-16 08:21:28
73
原创 2021-11-15
#include<stdio.h> #define L 4 //行 #define W 4 //列 #define MaxSize 100 int maze[L+2][W+2]= //创建迷宫数组 { {1,1,1,1,1,1}, {1,0,0,0,1,1}, {1,0,1,0,0,1}, {1,0,1,0,1,1}, {1,0,0,0,0,1},
2021-11-15 07:21:24
75
空空如也
sql中不创建模式就可以建表?
2021-06-23
TA创建的收藏夹 TA关注的收藏夹
TA关注的人