首页 > 其他分享 >实验4

实验4

时间:2022-11-06 16:23:04浏览次数:60  
标签:const Matrix int lines cols 实验 vectorInt

实验任务5

#pragma once
#include<iostream>
#include<cassert> 
using namespace std;
class vectorInt {
public:
    vectorInt(int n);
    vectorInt(int n, int value);
    vectorInt(const vectorInt&);
    ~vectorInt();
    int& at(int t) { return p[t]; }
    int get_size() { return size; }
    friend void output(vectorInt& p1);
private:
    int size;
    int* p;
};
vectorInt::vectorInt(int n) :size{ n } {
    cout << "constructor 1 called" << endl;
    p = new int[n];
}
vectorInt::vectorInt(int n, int value) :size{ n } {
    cout << "constructor 2 called" << endl;
    p = new int[n];
    for (auto i = 0; i < n; i++) {
        p[i] = value;
    }
}
vectorInt::vectorInt(const vectorInt& vi) :size{ vi.size }
{
    p = new int[size];
    cout << "copy constructor called." << endl;
    for (auto i = 0; i < vi.size; i++)
    {
        p[i] = vi.p[i];
    }
}
void output(vectorInt& p1)
{
    for (auto i = 0; i < p1.size - 1; ++i) {
        cout << p1.at(i) << ",";
    }
    cout << p1.at(p1.size - 1) << endl;
}
vectorInt::~vectorInt() {
    cout << "destructor called." << endl;
    delete[] p;
}
#include<iostream>
#include"标头.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

#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; i++)
    {
        for (int j = 0; j < cols; j++)
        {
            p[i * cols + j] = x.p[i * cols + j];
        }
    }
}
Matrix::~Matrix()
{
    delete[] p;
}
void Matrix::set(const double* pvalue) {
    for (int i = 0; i < lines; i++)
    {
        for (int j = 0; j < cols; j++)
        {
            p[i * cols + j] = *pvalue;
            pvalue++;
        }
    }
}
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 - 1; j++)
        {
            cout << p[i * cols + j] << ",";
        }
        cout << p[i * cols + cols - 1] << endl;
    }
}
#include<iostream>
#include"标头.hpp"
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/zqpqaz151034/p/16862902.html

相关文章

  • 实验四
    任务五:vectorInt.hpp#pragmaonce#include<cassert>#include<iostream>usingnamespacestd;classvectorInt{public:vectorInt(intn);~vectorInt()......
  • 实验一
    最大连续子数组和(最大子段和)问题:给定n个整数(可能为负数)组成的序列a[1],a[2],a[3],…,a[n],求该序列如a[i]+a[i+1]+…+a[j]的子段和的最大值。当所给的整数均为负数时定义......
  • 软件工程第一次实验
    (1)回顾你过去将近3年的学习经历当初你报考的时候,是真正喜欢计算机这个专业吗?是的。计算机专业用电脑进行软件开发,比较有意思。你现在后悔选择了这个专业吗?没有,虽然软......
  • 实验7:基于REST API的SDN北向应用实践
    1.编写Python程序,调用OpenDaylight的北向接口实现以下功能(1)利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight;启动OpendDaylight:./distribution-karaf-0.6.4-Car......
  • 实验一 任务一
    (1)回顾你过去将近3年的学习经历当初你报考的时候,是真正喜欢软件工程这个专业吗?你现在后悔选择了这个专业吗?你认为你现在最喜欢的领域是什么(可以是计算机的也可以是其......
  • 实验一郭蕊
    (1)回顾你过去将近3年的学习经历当初你报考的时候,是真正喜欢软件工程这个专业吗?是的。你现在后悔选择了这个专业吗?不后悔。你认为你现在最喜欢的领域是什么(可以是计......
  • 实验三
    实验1.1随机打印hi,november#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,char......
  • 实验四
    #include<iostream>usingnamespacestd;classvectorInt{private:intn;intvalue;int*arr;public:vectorInt(intn......
  • 逻辑回归算法实验
    【实验目的】理解逻辑回归算法原理,掌握逻辑回归算法框架;理解逻辑回归的sigmoid函数;理解逻辑回归的损失函数;针对特定应用场景及数据,能应用逻辑回归算法解决实际分类问题。......
  • 实验一——个人项目:任务二
    回首三年的学习生活,如今我也顺利的进入到了本科的学习生活。在专科期间我当初选择的专业就是软件技术专业,起因是在最开始的时候我在初中之后并没有考入普通高中,而是考......