首页 > 其他分享 >实验四

实验四

时间:2022-11-07 23:55:08浏览次数:37  
标签:arr Matrix int double 矩阵 实验 vectorInt

task 5

vectorInt.hpp

#pragma once
#include <iostream>
using namespace std;
class vectorInt {
public:
    vectorInt (int n) {
        cout << "constructor 2 called." << endl;
        this->capacity = n;
        this->size = n;
        this->arr = new int[n];
    }
    vectorInt (int n ,int x) {
        this->capacity = n;
        this->size = n;
        this->arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = x;
        }
    }
    vectorInt(vectorInt & x) {
        cout << "constructor 2 called." << endl;
        cout << "copy constructor called." << endl;
        this->size = x.size;
        this->arr = new int[x.size];
        for(int i = 0; i < x.size; i++)
        {
            this->arr[i] = x.arr[i];
        }
    }

    int& at(int idx) {
        return this->arr[idx];
    }
    // int operator[] (int idx){
    //     return this->arr[idx];
    // }
    ~vectorInt() {
        if(arr != NULL)
        {
            delete[] arr;
            this->arr = NULL;
            cout << "destructor called" << endl;
        }
    }
public:
    const int INCREACE_LEN = 64;
    int *arr;
    int size;
    int capacity;
};
void output(vectorInt &x){
    for (int i = 0; i < x.size; i++) {
        cout << x.at(i) << ' ';
    }
    puts("");
}

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();
}

 

 

 task6

Matrix.hpp

#pragma once
#include <iostream>
using namespace std;
using std::cout;
using std::endl;

class Matrix {
public:
    Matrix(int n);                     // 构造函数,构造一个n*n的矩阵
    Matrix(int n, int m);              // 构造函数,构造一个n*m的矩阵
    Matrix(const Matrix &X);           // 复制构造函数,使用已有的矩阵X构造
    ~Matrix();                         //析构函数

    void set(const double *pvalue);     // 用pvalue指向的连续内存块数据按行为矩阵赋值
    void set(int i, int j, int value); //设置矩阵第i行第j列元素值为value
    double &at(int i, int j);          //返回矩阵第i行第j列元素的引用
    double at(int i, int j) const;     // 返回矩阵第i行第j列元素的值
    int get_lines() const;             //返回矩阵行数
    int get_cols() const;              //返回矩列数
    void print() const;                // 按行打印输出矩阵

private:
    int lines; // 矩阵行数
    int cols;  // 矩阵列数
    double *p; // 指向存放矩阵数据的内存块的首地址
};

// 类Matrix的实现:待补足
Matrix::Matrix(int n) :lines(n), cols(n) 
{
    p = new double[n * n];
}
Matrix::Matrix(int n, int m) : lines(n), cols(m)
{
    p = new double[n * m];
}
Matrix::Matrix(const Matrix& X) : lines(X.lines), cols(X.cols)
{
    p = new double[lines * cols];
    for (int i = 1; i <= lines * cols; i++)
        p[i] = X.p[i];
}
Matrix::~Matrix()
{
    delete[]p;
}
void Matrix::set(const double* pvalue)
{
    for (int i = 0; i < lines * cols; i++)
        p[i] = pvalue[i];
}
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];
}
double Matrix::at(int i, int j) const
{
    return p[i * cols + j];
}
int Matrix::get_lines() const
{
    return lines;
}
int Matrix::get_cols() const
{
    return cols;
}

void Matrix::print() const
{
    for (int i = 0; i < lines; i++)
    {
        for (int j = 0; j < cols; j++)
            cout << p[i * cols + j] << ' ';
        cout << endl;
    }
}

task6.cpp

#include <iostream>
#include "matrix.hpp"

void test() {
    using namespace std;

    double x[] = {1, 2, 3, 4, 5, 6};

    Matrix m1(3, 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, 3);
    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(0, 0, 999);  // 将矩阵m3第0行第0列元素值设为999
    m3.print();
}

int main() {
    test();
}

 

标签:arr,Matrix,int,double,矩阵,实验,vectorInt
From: https://www.cnblogs.com/cytxxx/p/16867930.html

相关文章

  • 软件工程实验一
    (1) 回顾你过去将近3年的学习经历问:当初你报考的时候,是真正喜欢软件工程这个专业吗?答:是。问:你现在后悔选择了这个专业吗?答:不后悔。问:你认为你现在最喜欢的领域是什么......
  • 实验四
    #include<iostream>#include<cassert>usingstd::cout;usingstd::endl;classvectorInt{public:vectorInt(intn,intm);vectorInt(intn);vecto......
  • 第四次实验
    1#pragmaonce2#include<iostream>3usingnamespacestd;4classvectorInt5{6public:7vectorInt(intn);8vectorInt(intn,intnum);9......
  • 软件工程实验一
    (1)回顾你过去将近3年的学习经历当初你报考的时候,是真正喜欢计算机这个专业吗?你现在后悔选择了这个专业吗?你认为你现在最喜欢的领域是什么(可以是计算机的也可以是其它......
  • 软件工程实验一MXY
    (1)回顾你过去将近3年的学习经历当初你报考的时候,是真正喜欢计算机这个专业吗?    报考时不了解所学究竟是什么,迷茫焦虑没有方向。你现在后悔选择了这个专业吗?......
  • 实验4:开源控制器实践——OpenDaylight
    (一)基本要求1.利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight控制器;2.通过Postman工具调用OpenDaylight提供的API下发流表,实现拓扑内主机h1和h3网络中断10s。......
  • 0001-华为ENSP WLAN配置实验-郑锦程
    0001-华为ENSPWLAN配置实验-郑锦程创建管理vlan和业务vlan​​[AC6605]vlanbatch100101​​​​Info:Thisoperationmaytakeafewseconds.Pleasewaitforamome......
  • 二叉树相关上机实验
    #include<stdio.h>#include<malloc.h>#defineOK1#defineERROR0#defineMAXNUM20typedefintStatus;typedefstructbnode{intdata;structbnode......
  • 软件工程基础Y-实验一王瑜
    (1)回顾你过去将近3年的学习经历当初你报考的时候,是真正喜欢软件工程这个专业吗?有一些喜欢至少比其它专业喜欢你现在后悔选择了这个专业吗?不后悔你认为你现在最喜欢......
  • 实验3 函数应用编程
    实验任务1#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidpri......