fork(1) 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(){};
  36. T* operator [](const int i) {return a[i];}
  37. Matrix operator+(const Matrix& lhs)const{
  38. Matrix c(size1,size2);
  39. for(int i=0;i<size1;i++){
  40. for(int j=0;j<size2;j++){
  41. c.a[i][j]=a[i][j]+lhs.a[i][j];
  42. }
  43. }
  44. return c;
  45. }
  46.  
  47. Matrix operator-(const Matrix & obj) const{
  48. Matrix d(size1, size2);
  49. for(int i = 0; i < size1; i++){
  50. for(int j = 0; j < size2; j++){
  51. d.a[i][j] = a[i][j] - obj.a[i][j];
  52. }
  53. }
  54. return d;
  55. }
  56.  
  57. Matrix operator*(const Matrix & obj) const{
  58. Matrix e(size1, size2);
  59. for(int i = 0; i < size1; i++){
  60. for(int j = 0; j < size2; j++){
  61.  
  62. }
  63. }
  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(){
  85. for(int i = 0; i < size1; i++){
  86. delete[] a[i];
  87. }
  88. delete[] a;
  89. cout << "dest";
  90. }
  91. };
  92. template <typename T>
  93. class SquareMatrix : public Matrix<T>{
  94. public:
  95. SquareMatrix(int size) : Matrix<T>(size, size){
  96.  
  97. }
  98. T trace(){
  99. T sum = 0;
  100. for(int i = 0; i < this->size1; i++){
  101. sum += this->a[i][i];
  102. }
  103. return sum;
  104. }
  105. };
  106.  
  107. int main(void)
  108. {
  109. Matrix<double> a(2,2);
  110. cin>>a;
  111. Matrix<double> b(2,2);
  112. cin>>b;
  113. Matrix<double> c = a + b;
  114. cout<<c;
  115. SquareMatrix<int> sq(3);
  116. cin >> sq;
  117. cout << sq;
  118. cout << sq.trace() << endl;
  119. Matrix<double> d = a - b;
  120. cout << d;
  121. //Matrix<int> s;
  122. return 0;
  123. }
  124.  
  125.  
Success #stdin #stdout 0.01s 5284KB
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 
destdestdestdestdest