934. 最短的桥

力扣 934. 最短的桥code #include <stdbool.h> #include <stdio.h> #define MAX_LEGTH 102 #define DIRECTION_NUM 4 #define ISLAND_NUM 2 typedef struct Point { int rowId; int columnId; }Point; bool g_v
相关文章
相关标签/搜索