参考博客https://blog.csdn.net/hxxjxw/article/details/84986031
实验要求
代码1
#include<iostream>
#include<vector>
#include<ctime>
using namespace std;
int row;
vector<vector<int>> arr;
int x, y;
int random() //随机产生0~3范围中的一个数,代表走的方向
{
return rand() % 4;
}
void process(int e) // e代表走的方向
{
if (e == 1) {
// 该行第奇数个三角形往下走,第偶数个三角形往上走;
if ((x % 2 == 0) && (x >= 2</