用C++写一个八数矩阵
时间: 2023-10-09 16:06:09 浏览: 87
矩阵运算C++实现.doc
5星 · 资源好评率100%
好的,这是一个随机生成的八数矩阵的 C++ 代码:
```cpp
#include <iostream>
#include <vector>
#include <algorithm>
#include <ctime>
using namespace std;
int main() {
vector<int> nums = {1, 2, 3, 4, 5, 6, 7, 8};
random_shuffle(nums.begin(), nums.end());
int pos = rand() % 9;
nums.insert(nums.begin() + pos, -1);
for (int i = 0; i < 9; i++) {
if (nums[i] == -1) {
cout << "- ";
} else {
cout << nums[i] << " ";
}
if ((i + 1) % 3 == 0) {
cout << endl;
}
}
return 0;
}
```
这段代码使用了 STL 中的 vector 类型来存储数字 1 到 8,然后使用 random_shuffle 函数随机打乱这些数字的顺序。接着,使用 rand 函数随机生成一个空白格子的位置,并将 -1 插入到对应位置上,最终输出生成的八数矩阵。
阅读全文