任务五:
vectorInt.hpp
#pragma once #include <cassert> #include <iostream> using namespace std; class vectorInt { public: vectorInt(int n); ~vectorInt() { cout << "destructor called" << endl; delete[] p; } vectorInt(vectorInt& newp ); vectorInt(int n, int value) :size{ n } { cout << "constructor 2 called" << endl; p = new int[size]; for (auto i = 0; i < size; i++) p[i] = value; } int get_size(vectorInt& x) { return x.size; } int& at(int i); private: int size; int* p; friend void output(vectorInt& x); }; vectorInt::vectorInt(int n) :size{ n } { cout << "constructor 1 called" << endl; p = new int[n]; } vectorInt::vectorInt(vectorInt& newp) :size{ newp.size } { cout << "copy constructor called" << endl; p = new int[size]; for (auto i = 0; i < size; i++) p[i] = newp.p[i]; } int& vectorInt::at(int i) { assert(i >= 0 && i < size); return p[i]; } void output(vectorInt& x) { for (auto i = 0; i < x.size; i++) cout << x.at(i) << ", "; cout << endl; }
task.cpp
#include <iostream> #include "vectorInt.hpp" void test() { using namespace std; int n; cin >> n; vectorInt x1(n); for (auto i = 0; i < n; ++i) x1.at(i) = i * i; output(x1); vectorInt x2(n, 42); vectorInt x3(x2); output(x2); output(x3); x2.at(0) = 77; output(x2); output(x3); } int main() { test(); }
运行结果:
任务六:
martix.hpp
#pragma once #include <iostream> using std::cout; using std::endl; class Matrix { public: Matrix(int n) :lines{ n }, cols{ n }{ p = new double[n * n]; } Matrix(int n, int m) :lines{ n }, cols{ m }{ p = new double[n * m]; } Matrix(const Matrix& X); ~Matrix() { delete[] p; } void set(const double* pvalue) { for (auto i = 0;i < lines;i++) for(auto j=0;j<cols;j++) p[i*cols+j] = *pvalue++; } void set(int i, int j, int value) { p[i*cols + j] = value; } double& at(int i, int j) { return p[i*cols + j]; } double at(int i, int j) const { return p[cols*i + j]; } int get_lines() const { return lines; } int get_cols() const { return cols; } void print() const { for (auto i = 0;i < lines;i++) { for (auto j = 0;j < cols;j++) cout << p[i * cols + j] << ","; cout << "\b\b\n"; } } private: int lines; int cols; double* p; }; Matrix::Matrix(const Matrix& X) :lines{ X.lines }, cols{ X.cols } { p = new double[lines * cols]; for (auto i = 0;i < lines;i++) for (auto j = 0;j < cols;j++) p[i*cols+j] = X.p[i*cols+j]; }
task.cpp
#include <iostream> #include "matrix.hpp" void test() { using namespace std; double x[] = { 1, 2, 3, 4, 5, 6,7,8 }; Matrix m1(4, 2); // 创建一个3×2的矩阵 m1.set(x); // 用一维数组x的值按行为矩阵m1赋值 m1.print(); // 打印矩阵m1的值 cout << "the first line is: " << endl; cout << m1.at(0, 0) << " " << m1.at(0, 1) << endl; // 输出矩阵m1第1行两个元素的值 cout << endl; Matrix m2(2, 4); m2.set(x); m2.print(); cout << "the first line is: " << endl; cout << m2.at(0, 0) << " " << m2.at(0, 1) << " " << m2.at(0, 2) << endl; cout << endl; Matrix m3(m2); // 用矩阵m2构造新的矩阵m3 m3.set(1, 3, 9); // 将矩阵m3第0行第0列元素值设为999 m3.print(); } int main() { test(); }
结果:
标签:Matrix,m1,int,实验,output,vectorInt,include From: https://www.cnblogs.com/shmily-cwh/p/16862840.html