View problem_2_9
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdlib.h> | |
#include <string.h> | |
#include <queue> | |
using namespace std; | |
struct que | |
{ | |
int x;//点的编号 | |
int n;//第几个点 | |
int trace[20];//当前手势路径 |
View problem_2_16
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdlib.h> | |
#include <string.h> | |
#include <queue> | |
using namespace std; | |
struct que | |
{ | |
int x;//点的编号 | |
int n;//第几个点 | |
int trace[20];//当前手势路径 |