摘要: 熟悉c风格的矩阵定义,那么用纯c++特性vector如何定义一个矩阵呢? 1 # include<vector> 2 # include <iostream> 3 int main() 4 { 5 using namespace std; 6 vector<vector<int>> array(3) 阅读全文
posted @ 2019-08-21 22:22 少年π 阅读(4479) 评论(0) 推荐(1) 编辑