这里讲的矩阵有创建矩阵,矩阵加法,矩阵乘法,输出矩阵这些功能。

#include<iostream>

using namespace std;

template<class T>

class matrix       //矩阵节点

{

public:

matrix(int theRows = 0, int theColumns = 0);

matrix(const matrix<T>&);

~matrix() { delete[] element; };

int rows()const { return theRows; };

int cols()const { return theColumns; };

T& operator()(int i, int j)const;

matrix<T>& operator=(const matrix<T>&);

matrix<T> operator+()const;

matrix<T> operator+(const matrix<T>&)const;

matrix<T> operator-()const;

matrix<T> operator-(const matrix<T>&)const;

matrix<T> operator*(const matrix<T>&)const;

matrix<T>& operator+=(const T&);

void Input();

void Output();

private:

int theRows;

int theColumns;

T* element;             //元素

};

template<class T>

matrix<T>::matrix(int theRows, int theColumns)

{

if (theColumns < 0 || theRows < 0)

{

cout<<"Rows and Cols must be >= 0 ";

}

if ((theColumns == 0 || theRows == 0) && (theColumns != 0 || theRows != 0))

{

cout<<"Either both or neither rows and columns should be zero ";

}

this->theColumns = theColumns;

this->theRows = theRows;

element = new T[theColumns * theRows];

}

template<class T>

matrix<T>::matrix(const matrix<T>& m)

{

theColumns = m.theColumns;

theRows = m.theRows;

size_t number = theColumns * theRows;

element = new T[number];

copy(m.element, m.element + number, element);

}

template<class T>

matrix<T>& matrix<T>::operator=(const matrix<T>& m)

{

if (this != &m)

{

delete[] element;

theColumns = m.theColumns;

theRows = m.theRows;

size_t number = theColumns * theRows;

element = new T[number];

copy(m.element, m.element + number, element);

}

return *this;

}

template<class T>

T& matrix<T>::operator()(int i, int j) const

{

if (i<1 || i>theRows || j<1 || j>theColumns)

{

cout<<"Matrix Index Out Of Bounds ";

}

return element[(i - 1)*theColumns + j - 1];

}

//矩阵相加

template<class T>

matrix<T> matrix<T>::operator+(const matrix<T>& m)const

{

if (theRows != m.theRows || theColumns != m.theColumns)

{

cout<< "Matrix Size is Out of batch ";

}

matrix<T> w(theRows, theColumns);

size_t number = theColumns*theRows;

for (int i = 0; i < number; i++)

{

w.element[i] = element[i] + m.element[i];

}

return w;

}

//矩阵相乘

template<class T>

matrix<T> matrix<T>::operator*(const matrix<T>& m)const

{

if (theColumns != m.theRows || theRows != m.theColumns)

{

cout<<"Matrix Style is Out of batch ";

}

matrix<T> w(theRows, theColumns);

int ct = 0;

int cm = 0;

int cw = 0;

for (int i = 1; i <= theRows; i++)

{

for (int j = 1; j <= theColumns; j++)

{

T sum = element[ct] * m.element[cm];

for (int k = 2; k <= theColumns; k++)

{

ct++;

cm += m.theColumns;

sum += element[ct] * m.element[cm];

}

w.element[cw++] = sum;

ct -= theColumns - 1;

cm = j;

}

ct += theColumns;

cm = 0;

}

return w;

}

//输入矩阵

template<class T>

void matrix<T>::Input()

{

size_t number = theColumns * theRows;

for (int i = 0; i < number; i++)

{

cin >> element[i];

}

cout << "Input fanished" << endl;

return;

}

//输出矩阵

template<class T>

void matrix<T>::Output()

{

size_t number = theColumns * theRows;

for (int i = 0; i < theRows; i++)

{

for (int j = 0; j < theColumns; j++)

{

cout << element[i*theColumns + j] << " ";

}

cout << endl;

}

cout << "Output finished " << endl;

return;

}

int main()

{

matrix<int> a(3, 3);

matrix<int> b(3, 3);

matrix<int> c(3, 3);

matrix<int> d(3, 3);

a.Input();

b.Input();

c= a * b;

d=a+b;

c.Output();

d.Output();

return 0;

}

c++矩阵的更多相关文章

  1. C语言 · 矩阵乘法 · 算法训练

    问题描述 输入两个矩阵,分别是m*s,s*n大小.输出两个矩阵相乘的结果. 输入格式 第一行,空格隔开的三个正整数m,s,n(均不超过200). 接下来m行,每行s个空格隔开的整数,表示矩阵A(i,j ...

  2. 获取Canvas当前坐标系矩阵

    前言 在我的另一篇博文 Canvas坐标系转换 中,我们知道了所有的平移缩放旋转操作都会影响到画布坐标系.那在我们对画布进行了一系列操作之后,怎么再知道当前矩阵数据状态呢. 具体代码 首先请看下面的一 ...

  3. CSharpGL(32)矩阵与四元数与角度旋转轴的相互转换

    CSharpGL(32)矩阵与四元数与角度旋转轴的相互转换 三维世界里的旋转(rotate),可以用一个3x3的矩阵描述:可以用(旋转角度float+旋转轴vec3)描述.数学家欧拉证明了这两种形式可 ...

  4. “为什么DirectX里表示三维坐标要建一个4*4的矩阵?”

    0x00 前言 首先要说明的是,本文的标题事实上来自于知乎上的一个同名问题:为什么directX里表示三维坐标要建一个4*4的矩阵? - 编程 .因此,正如Milo Yip大神所说的这个标题事实上是存 ...

  5. js实现蛇形矩阵

    参加腾讯前端实习生笔试,真的是被虐了千百遍,除了一条js程序题,其他半点前端都没有,都是考算法,计算机原理,数据结构.下面贴上腾讯笔试最后三大条中的一条,实现一个蛇形矩阵的输出.蛇形矩阵的什么样这里我 ...

  6. ACM 中 矩阵数据的预处理 && 求子矩阵元素和问题

            我们考虑一个$N\times M$的矩阵数据,若要对矩阵中的部分数据进行读取,比如求某个$a\times b$的子矩阵的元素和,通常我们可以想到$O(ab)$的遍历那个子矩阵,对它的各 ...

  7. PAT 1050. 螺旋矩阵(25)

    本题要求将给定的N个正整数按非递增的顺序,填入"螺旋矩阵".所谓"螺旋矩阵",是指从左上角第1个格子开始,按顺时针螺旋方向填充.要求矩阵的规模为m行n列,满足条 ...

  8. [LeetCode] Kth Smallest Element in a Sorted Matrix 有序矩阵中第K小的元素

    Given a n x n matrix where each of the rows and columns are sorted in ascending order, find the kth ...

  9. [LeetCode] Longest Increasing Path in a Matrix 矩阵中的最长递增路径

    Given an integer matrix, find the length of the longest increasing path. From each cell, you can eit ...

  10. [LeetCode] Smallest Rectangle Enclosing Black Pixels 包含黑像素的最小矩阵

    An image is represented by a binary matrix with 0 as a white pixel and 1 as a black pixel. The black ...

随机推荐

  1. 远程登录事件ID

    4672.4624 删除本机记录 HKEY_CURRENT_USER \ Software\Microsoft  \ Terminal ServerClientDefault: 删除“此电脑\文档”下 ...

  2. CRM User Status profile中Business Transaction字段的用途

    有朋友问到User Status profile中Business Transaction字段的用途,如下图INPR, FINI所示. 实际上,这个字段作为一个桥梁,连接了User Status和Sy ...

  3. this.value = this.placeholder || this.getAttribute('placeholder')

    this.value = this.placeholder || this.getAttribute('placeholder') 鉴于不同的浏览器对为止属性的实现方式有所不用,这里同时使用了HTML ...

  4. Portal简介

    Portal 在英语中是入口的意思.Portal 认证通常也称为 Web 认证,一般将 Portal 认 证网站称为门户网站. 未认证用户上网时,设备强制用户登录到特定站点,用户可以免费访问其中的服务 ...

  5. XAMPP安装过程中,出现的问题

    这次运行一个简单的前端(html+css+js+ajax)+php后端项目,运行XAMPP的时候,出现两个问题: phpmyadmin运行不起来,一直报1544错误 请求本地图片及php文件报403错 ...

  6. java算法面试题:有一个字符串,其中包含中文字符、英文字符和数字字符,请统计和打印出各个字符的个数 按值的降序排序,如果值相同则按键值的字母顺序

    package com.swift; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; publi ...

  7. CURLOPT_PROGRESSFUNCTION

    Author:李强(李祥祥) Date   :2012-12-15 17:26 LIBCURL官方网站都没有说清楚道明白进度函数的参数的作用,这点我感觉文档很片面,经总结如下: size_t CUpl ...

  8. 稍微深入点理解C++复制控制【转】

    通过一个实例稍微深入理解C++复制控制过程,参考资料<C++ primer>,介绍点基本知识: 1.在C++中类通过特殊的成员函数:复制构造函数.赋值操作符和析构函数来控制复制.赋值和撤销 ...

  9. 螺旋矩阵,两步进阶,从暴力到o(1)

    题目描述 一个 n 行 n 列的螺旋矩阵可由如下方法生成: 从矩阵的左上角(第 1 行第 1 列)出发,初始时向右移动:如果前方是未曾经过的格子,则继续前进,否则右转:重复上述操作直至经过矩阵中所有格 ...

  10. SummerVocation_Learning--java的String类运用

    题目: 编写一个程序,输出一个字符串中的大写字母数,小写字母数,及其它字母数. 思路1: 可以先遍历整个字符串,在判断每个字符的类型. public class TestString { public ...