实验任务5: vectorInt.hpp #pragma once #include<bits/stdc++.h> using namespace std; class vectorInt{ public: vectorInt(int n); vectorInt(int n,int v); vectorInt(const vectorInt &x); ~vectorInt(); int &at(int index); int get_size() const; friend void output(vectorInt &xx); private: int size; int *a; }; int vectorInt::get_size()const{ return size; } vectorInt::vectorInt(int n,int v):size{n}{ cout<<"constructor 2 called."<<endl; a = new int[n]; for(int i=0;i<n;i++) a[i] = v; } vectorInt::vectorInt(int n):size{n}{ cout<<"constructor 1 called."<<endl; a = new int[n]; }; vectorInt::~vectorInt(){ delete[] a; cout<<"destructor called."<<endl; } vectorInt::vectorInt(const vectorInt& x){ size = x.size; a = new int[size]; for(int i = 0; i < size; ++i) a[i] = x.a[i]; cout << "copy constructor called." << endl; } int &vectorInt::at(int index){ assert(index >= 0 && index < size); return a[index]; } void output(vectorInt &xx){ for(int i=0;i<xx.get_size();i++) cout<<xx.at(i)<<" "; cout<<endl; } task5.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(); }
实验任务6
matrix.hpp #pragma once #include <iostream> using std::cout; using std::endl; class Matrix { public: Matrix(int n); Matrix(int n, int m); Matrix(const Matrix &X); ~Matrix(); void set(const double *pvalue); void set(int i, int j, int value); double &at(int i, int j); double at(int i, int j) const; int get_lines() const; int get_cols() const; void print() const; private: int lines; int cols; double *p; }; Matrix::Matrix(int n) : lines{n},cols{n} { p=new double[lines*cols]; }; Matrix::Matrix(int n, int m) : lines{n},cols{m} { p=new double[lines*cols]; }; Matrix::Matrix(const Matrix &X) { lines=X.lines; cols=X.cols; p=new double[lines*cols]; for(int i=0;i<lines*cols;i++) p[i]=X.p[i]; } Matrix::~Matrix() {delete[] p;} void Matrix::set(const double *pvalue) { int i=0,j=0; while(i<lines*cols) { p[i++]=pvalue[j++]; } } void Matrix::set(int i, int j, int value) { p[i*cols+j]=value; } double &Matrix::at(int i, int j) { return p[i*cols+j]; } int Matrix::get_lines() const { return lines; } int Matrix::get_cols() const { return cols; } void Matrix::print() const { int i=0; while(i<lines) { int j=0; while(j<cols) { cout<<p[i*cols+j]<<" "; j++; } cout<<endl; i++; } } task6.cpp #include <iostream> #include "matrix.hpp" void test() { using namespace std; double x[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; Matrix m1(3, 4); m1.set(x); m1.print(); cout << "the first line is: " << endl; cout << m1.at(1, 0) << " " << m1.at(1, 1) <<" "<<m1.at(1,2) <<" "<<m1.at(1,3)<< endl; cout << endl; Matrix m2(4, 3); m2.set(x); m2.print(); cout << "the first line is: " << endl; cout << m2.at(0, 2) << " " << m2.at(1, 2) << " " << m2.at(2, 2) <<" "<<m2.at(3,2)<< endl; cout << endl; Matrix m3(m2); m3.set(3, 2, 101); m3.print(); } int main() { test(); }
标签:const,Matrix,int,lines,cols,实验,vectorInt From: https://www.cnblogs.com/2021zxq/p/16872363.html