实验三 类与对象二

实验内容4

Vector.hpp

#include<iostream>
#include<cassert>
using namespace std;

class Vector_int{
public:
//    Vector_int(int n);
    Vector_int(int n,int m);
    Vector_int(const Vector_int &v);
    int &at(int q);
    void show();
    ~Vector_int();
private:
    int length;
    int *t;
};

Vector_int::Vector_int(int n,int m=0)
{
    length=n;
    t=new int[length];
    for(int i=0;i<length;i++){
        t[i]=m;}
}
Vector_int::~Vector_int()
{
    delete[] t;
    cout << "deleting" <<endl;
}
Vector_int::Vector_int(const Vector_int &v)
{
    length=v.length;
    t=new int[length];
    for(int i=0;i<length;i++)
    {
        t[i]=v.t[i];
    }
}
int &Vector_int::at(int q)
{
    assert(q>=0&&q<length);
    return t[q];
}
void Vector_int::show()
{
    for(int i=0;i<length;i++)
    {
        cout << t[i] << " ";
    }
    cout <<endl;
}

 

task4.cpp

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

using namespace std;
int main()
{
    Vector_int ce1(6);
    cout << "ce1:" <<endl;
    ce1.show();
    Vector_int ce2(ce1);
    cout << "ce2:" <<endl;
    ce2.show();
    ce1.at(2)=5;
    cout << "ce1':" <<endl;
    ce1.show();
    Vector_int ce3(6,6);
    cout << "ce3:" <<endl;
    ce3.show();
    return 0;
}

测试代码如下

实验三 类与对象二

 

实验内容五

Matrix.hpp

#include <iostream>
#include <cassert>
#ifndef MATRIX_H
#define MATRIX_H
#endif
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[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)
{
    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++)    
            std::cout << p[i*cols+j] <<",";
    std::cout << "\b " << std::endl;
    }
}

task5.cpp

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

int main()
{
    using namespace std;

    double x[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
    double x1[] = {1, 2, 4, 6, 7, 0};
    Matrix m1(3);    // 创建一个3×3的矩阵
    m1.set(x);          // 用一维数组x的值按行为矩阵m1赋值
    m1.print();         // 打印矩阵m1的值
    cout << "the first line is: " << endl;
    cout << m1.at(0, 0) << " " << m1.at(0, 1) << endl;
    cout << endl;

    Matrix m2(2,3 );
    m2.set(x1);
    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();
}

改变数据后,测试代码如下

实验三 类与对象二

 

上一篇:实验三 类和对象(二)


下一篇:《Mysql 引擎》