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. public:
  20. Matrix() : size1(1), size2(1) {
  21. a = new T * [1];
  22. a[0] = new T [1];
  23. }
  24. Matrix(int n, int m) : size1(n), size2(m){
  25. if ((n<0) or (m<0)) {
  26. cout<<"cannot create matrix"<<endl;
  27. }
  28. else {
  29. a = new T * [n];
  30. for (int i = 0; i < n; i++){
  31. a[i] = new T [m];
  32. }
  33. }
  34. }
  35. T* operator [](const int i) {return a[i];}
  36. Matrix operator+(const Matrix& lhs)const{
  37. Matrix c(size1,size2);
  38. for(int i=0;i<size1;i++){
  39. for(int j=0;j<size2;j++){
  40. c.a[i][j]=a[i][j]+lhs.a[i][j];
  41. }
  42. }
  43. return c;
  44. }
  45. Matrix operator-(const Matrix& lhs)const{
  46. Matrix d(size1,size2);
  47. for(int i=0;i<size1;i++){
  48. for(int j=0;j<size2;j++){
  49. d.a[i][j]=a[i][j]-lhs.a[i][j];
  50. }
  51. }
  52. return d;
  53. }
  54. Matrix operator*(const Matrix& lhs)const{
  55. Matrix sum(size1,lhs.size2);
  56. for (int i=0;i<size1;i++) {
  57. for (int j=0;j<size2;i++) {
  58. for (int z=0;z<size2;i++) {
  59. sum.a[i][j]=a[i][z]*lhs.a[z][j]+sum.a[i][j];
  60. }
  61. }
  62. }
  63. return sum;
  64. }
  65. friend ostream& operator<< (ostream& os, const Matrix& a) {
  66. // countT++;
  67. for(int i=0;i<a.size1;i++){
  68. for(int j=0;j<a.size2;j++){
  69. os<<a.a[i][j]<<" ";
  70. }
  71. os<<endl;
  72. }
  73. return os;
  74. }
  75. friend istream& operator>> (istream& is, const Matrix& a) {
  76. // countT++;
  77. for(int i=0;i<a.size1;i++){
  78. for(int j=0;j<a.size2;j++){
  79. is>>a.a[i][j];
  80. }
  81. }
  82. return is;
  83. }
  84. ~Matrix() {//delete a;
  85. }
  86. };
  87. template<typename F>
  88. class Square {
  89. protected:
  90. F **a;
  91. int size;
  92. public:
  93. Square(int n): size(n) {
  94. if (n<0) {
  95. cout<<"cannot create square matrix"<<endl;
  96. }
  97. else {
  98. a=new F* [n];
  99. for (int i=0;i<n;i++) {
  100. a[i]=new F [n];
  101. }
  102. }
  103. }
  104. friend istream& operator>> (istream& is, const Square& a) {
  105.  
  106. for(int i=0;i<a.size;i++){
  107. for (int j=0;j<a.size;j++) {
  108. is>>a.a[i][j];
  109. }
  110. }
  111. return is;
  112. }
  113. F* operator[](const int i) {
  114. return a[i];
  115. }
  116. F determant(Square &a) {
  117. F det=0;
  118. for (int i=0;i<size;i++) {
  119. det=a[i][i]+det;
  120. }
  121. cout<<det;
  122. return det;
  123. }
  124. };
  125. int main(void)
  126. {
  127. Matrix<double> a(2,2);
  128. cin>>a;
  129. Matrix<double> b(2,2);
  130. cin>>b;
  131. Matrix<double> c(2,2);
  132. Matrix<double> d(2,2);
  133. Matrix<double> e(2,2);
  134. c=a+b;
  135. d=a-b;
  136. //e=a*b;
  137. Matrix<int> f(-5,6);
  138. cout<<c;
  139. cout<<d;
  140. cout<<e;
  141. Square<int> skr(2);
  142. cin>>skr;
  143. skr.determant(skr);
  144. return 0;
  145. }
  146.  
  147.  
Success #stdin #stdout 0.01s 5280KB
stdin
1 2
1 2
4 5
5 6
8 9
3 2
stdout
cannot create matrix
5 7 
6 8 
-3 -3 
-4 -4 
0 0 
0 0 
10