fork download
  1. #include <iostream>
  2. using namespace std;
  3. // 1) що негаразд із кодом з погляду інкапсуляції? Як виправити?
  4. // 2) додайте можливість виклику конструктора без параметрів, щоб створювалася матриця розміру 1Х1
  5. //3) реалізувати деструктор
  6. // 4) перевантажити операцію + додавання 2х матриць
  7. // 5) перевантажити операцію - віднімання 2х матриць
  8. // 6) обробити створення матриці з негативною розмірністю
  9. // 7)перевантажити операцію * множення матриці на матрицю
  10. // 9) написати клас спадкоємець квадратна матриця, з методом обчислює слід матриці (сума елементів головної діаганалі)
  11.  
  12. template <typename T>
  13. class Matrix
  14. {
  15. protected:
  16. T **a;
  17. int size1;
  18. int size2;
  19.  
  20. public:
  21.  
  22. Matrix(int n, int m) {
  23. while(m <= 0 and n <= 0){
  24. cout << "Enter a different size";
  25. cin >> n >> m;
  26. }
  27. size1 = n;
  28. size2 = m;
  29. a = new T * [n];
  30.  
  31. for (int i = 0; i < n; i++){
  32. a[i] = new T [m];
  33. }
  34. }
  35. Matrix() : size1(1), size2(1){
  36. a = new T * [size1];
  37. for (int i = 0; i < size1; i++){
  38. a[i] = new T [size2];
  39.  
  40.  
  41. }
  42. };
  43. T* operator [](const int i) {return a[i];}
  44. Matrix operator+(const Matrix& lhs)const{
  45. Matrix c(size1,size2);
  46. for(int i=0;i<size1;i++){
  47. for(int j=0;j<size2;j++){
  48. c.a[i][j]=a[i][j]+lhs.a[i][j];
  49. }
  50. }
  51. return c;
  52. }
  53.  
  54. Matrix operator-(const Matrix & obj) const{
  55. Matrix d(size1, size2);
  56. for(int i = 0; i < size1; i++){
  57. for(int j = 0; j < size2; j++){
  58. d.a[i][j] = a[i][j] - obj.a[i][j];
  59. }
  60. }
  61. return d;
  62. }
  63.  
  64. Matrix operator*(const Matrix & obj) const{
  65. Matrix e(size1, size2);
  66. for(int i = 0; i < size1; i++){
  67. for(int j = 0; j < size2; j++){
  68. e.a[i][j] += (a[i][j] * obj.a[i][j]);
  69. }
  70. }
  71. return e;
  72. }
  73. friend ostream& operator<< (ostream& os, const Matrix& a) {
  74. // countT++;
  75. for(int i=0;i<a.size1;i++){
  76. for(int j=0;j<a.size2;j++){
  77. os<<a.a[i][j]<<" ";
  78. }
  79. os<<endl;
  80. }
  81. return os;
  82. }
  83. friend istream& operator>> (istream& is, const Matrix& a) {
  84. // countT++;
  85. for(int i=0;i<a.size1;i++){
  86. for(int j=0;j<a.size2;j++){
  87. is>>a.a[i][j];
  88. }
  89. }
  90. return is;
  91. }
  92. ~Matrix(){
  93. for(int i = 0; i < size1; i++){
  94. delete[] a[i];
  95. }
  96. delete[] a;
  97. cout << "dest";
  98. }
  99. };
  100. template <typename T>
  101. class SquareMatrix : public Matrix<T>{
  102. public:
  103. SquareMatrix(int size) : Matrix<T>(size, size){
  104.  
  105. }
  106. T trace(){
  107. T sum = 0;
  108. for(int i = 0; i < this->size1; i++){
  109. sum += this->a[i][i];
  110. }
  111. return sum;
  112. }
  113. };
  114.  
  115. int main(void)
  116. {
  117. Matrix<double> a(2,2);
  118. cin>>a;
  119. Matrix<double> b(2,2);
  120. cin>>b;
  121. Matrix<double> c = a + b;
  122. cout<<c;
  123. SquareMatrix<int> sq(3);
  124. cin >> sq;
  125. cout << sq;
  126. cout << sq.trace() << endl;
  127. Matrix<double> d = a - b;
  128. cout << d;
  129. Matrix<double> e = a * b;
  130. cout << e;
  131. Matrix<int> s;
  132. cout << s;
  133. return 0;
  134. }
  135.  
  136.  
Success #stdin #stdout 0s 5296KB
stdin
1 2
1 2
4 5
5 6
2 3 4
5 6 7
8 9 0
stdout
5 7 
6 8 
2 3 4 
5 6 7 
8 9 0 
8
-3 -3 
-4 -4 
4 10 
5 12 
0 
destdestdestdestdestdestdest