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
相關文章
相關標籤/搜索