首页 > 其他分享 >实验4 类与数组、指针

实验4 类与数组、指针

时间:2022-11-05 21:56:42浏览次数:35  
标签:const Matrix int lines cols 实验 数组 VectorInt 指针

task5 VectorInt.h

#pragma once

#include<iostream>
#include<cassert>

using namespace std;

class VectorInt {
public:
    VectorInt(int n);
    VectorInt(int n, int value);
    VectorInt(const VectorInt& vp);
    ~VectorInt();

public:
    int& at(int index);
    int get_size(int p[]) { return sizeof(p); }
    friend void output(VectorInt& x);
private:
    int size;
    int* p;
private:
    static int number;
};

int VectorInt::number = 0;

VectorInt::VectorInt(int n) :size{ n } {
    number++;
    cout << "constructor "<<number<<" called." << endl;
    p = new int[n];
}

VectorInt::VectorInt(int n, int value) :size{ n } {
    p = new int[n];
    for (auto i = 0; i < n; i++) {
        p[i] = value;
    }
} 

VectorInt::VectorInt(const VectorInt& vp) :size { vp.size } {
        number++;
    cout << "constructor "<<number<<" called." << endl;
    cout << "copy constuctor called" << endl;
    p = new int[size];
    for (auto i = 0; i < size; ++i) {
        p[i] = vp.p[i];
    }
}

VectorInt::~VectorInt() {
    cout << "destructor called" << endl;
}

int& VectorInt::at(int index) {
    return p[index];
}

void output(VectorInt& x) {
    for (auto i=0;i<x.size;i++)
        cout << x.p[i] << ", ";
    cout << "\b\b \n";
}

task5.cpp

#include <iostream>
#include "vectorInt.h"

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.h

#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[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 = 0; i < lines * cols; i++)
        p[i] = X.p[i];
}

Matrix::~Matrix()
{
        delete[] p;
}

int Matrix::get_lines()const
{
    return lines;
}

int Matrix::get_cols() const
{
    return cols;
}

void Matrix::set(const double* pvalue)
{
    for (auto 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];
}

void Matrix::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";
    }
}

task6.h

#include <iostream>
#include "Matrix.h"

void test() {
    using namespace std;

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

    Matrix m1(3, 2);
    m1.set(x);
    m1.print();
    cout << "the first line is: " << endl;
    cout << m1.at(0, 0) << " " << m1.at(0, 1) << endl;
    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);
    m3.set(0, 0, 999);
    m3.print();
}

int main() {
    test();
}

实验结果:

 

标签:const,Matrix,int,lines,cols,实验,数组,VectorInt,指针
From: https://www.cnblogs.com/lyjlyjlyj/p/16861428.html

相关文章

  • 实验四
    task5:vectorInt.hpp#include<iostream>usingnamespacestd;classvectorInt{public:vectorInt(intn);vectorInt(intn,intvalue);vectorInt(......
  • 读取数组树下的某值,并返回其父级下的任何值 vue
    1//遍历树获取对应id的项中的值2queryTree(tree,value){3letstark=[];4stark=stark.concat(tree);5while(stark.length)......
  • 实验4 类与数组、指针
    实验任务51#pragmaonce2#include<iostream>34usingstd::cout;5usingstd::endl;67classvectorInt{8public:9//构造函数和析构函数1......
  • 实验三
    实验任务1:#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);//*函数声明*......
  • 实验4
    //vectorInt.hpp#include<iostream>usingnamespacestd;classvectorInt{private:intsize;int*data;public:vectorInt(......
  • solidity数组的使用
    长度固定的数组uint[]定义的数组,可以使用引用查看索引位置的数值,使用.length得到数组的长度byte定义的数组,将字符串以十六进制形式保存,不能使用.length。byte默认值为0......
  • 实验二:逻辑回归算法实验
    【实验目的】1.理解逻辑回归算法原理,掌握逻辑回归算法框架;2.理解逻辑回归的sigmoid函数;3.理解逻辑回归的损失函数;4.针对特定应用场景及数据,能应用逻辑回归算法解决实际分......
  • 指针和引用
    c++11新增了“右值引用”,这里的引用特指“左值引用”。(1)定义:引用是为变量另起一个名字,它和这个变量实质上是同一个东西。指针是一个变量,它存储的是一个地址,指向内存的一......
  • 实验二:逻辑回归算法实验
    |20大数据三班|实验二:逻辑回归算法实验-作业-20级大数据3班机器学习-班级博客-博客园(cnblogs.com)||学号|201613328|实验二:逻辑回归算法实验-胡辛原-博客......
  • 实验四
    #include<iostream>usingnamespacestd;classvectorint{public:vectorint(intl=0){size=l;cout<<"constructor1called\n"<<endl;......