免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: liubinbj
打印 上一主题 下一主题

如何定义operator[][]?? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2006-07-20 12:34 |只看该作者
prc的代码是有问题的

论坛徽章:
0
12 [报告]
发表于 2006-07-20 16:42 |只看该作者
原帖由 converse 于 2006-7-20 12:34 发表
prc的代码是有问题的


没检查他的代码,倒找到另外一个


  1. #include <string.h>

  2. //
  3. // Definition and Declaration of Container2DRow class
  4. // if you do not like templates for any reason you can
  5. // create two version of this class double and int that
  6. // should be enough for 99% of applications   

  7. template <class T>
  8. class Container2DRow
  9. {
  10. public:
  11.     T& operator [] (int j);
  12.     const T& operator [] (int j) const;
  13.     T **m_ppMatrix;
  14.     int i; //ROW (Y coord)
  15.     int m_nXSize;
  16. };
  17. ///Class container

  18. template<class T>
  19. const T& Container2DRow<T>::operator [] (int j) const
  20. {
  21. //   ASSERT(j>=0 && j<m_nXSize);
  22.     return m_ppMatrix[i][j];
  23. }

  24. template<class T>
  25. T& Container2DRow<T>::operator [] (int j)
  26. {
  27. //   ASSERT(j>=0 && j<m_nXSize);
  28.     return m_ppMatrix[i][j];
  29. }
  30. //
  31. // Defenition of CMatrix class
  32. //
  33. template <class T>
  34. class CMatrix  
  35. {
  36. public:
  37.     //Helper class for [][] indexing, it is not neccesarily
  38.     // to agragated by CMatrix it could be just a friend
  39.     Container2DRow<T> row;

  40. private:
  41.     int m_nXSize;
  42.     int m_nYSize;
  43.     int m_nMemorySize;
  44.     T **m_ppMatrix;

  45.     bool m_bCreated;
  46. public:
  47.     //Constructor & Copy Constructor
  48.     CMatrix(int nYSize, int nXSize);
  49.     CMatrix(const CMatrix& matrix);

  50.     //operator = returns reference in order to enable
  51.     //expressions like this a=b=c=d;  
  52.     //a=b       a.operator=(b)
  53.     //a=b+c     a.operator=(b.operator+(c));
  54.     //a=b-c     a.operator=(b.operator-(c));
  55.     CMatrix& operator= (const CMatrix& matrix);
  56.     CMatrix  operator+ (const T& item);
  57.     CMatrix  operator- (const T& item);

  58.     //Indexing //Y(row) X(col)
  59.     T& operator()(int i, int j);   // i - row
  60.     //operator  [] returns object of type  Container2DRow
  61.     //with have operator [] overloaded and know how to access
  62.     //matrix data
  63.     Container2DRow<T> operator [] (int i);
  64.     const    Container2DRow<T> operator [] (int i) const;

  65.     //Helper functions, you can expand this section to do
  66.     //LU decomposition, determinant evaluation and so on,  
  67.     T SumAll();
  68.     //Get Size
  69.     int GetXSize();
  70.     int GetYSize();
  71.     T GetMinValue();
  72.     T GetMaxValue();
  73.     virtual ~CMatrix();
  74. };
  75. template<class T>
  76. CMatrix<T>::CMatrix(int nYSize, int nXSize)
  77. {
  78.     m_bCreated = false;
  79. //   ASSERT(nXSize>0 && nYSize>0);


  80.     m_nXSize = nXSize;
  81.     m_nYSize = nYSize;
  82.     m_nMemorySize = m_nYSize*m_nXSize*sizeof(T);

  83.     m_ppMatrix    = new T* [m_nYSize];
  84.     m_ppMatrix[0] = new T  [m_nYSize*m_nXSize];

  85.     for (int i=1; i<m_nYSize; i++)
  86.         m_ppMatrix[i] = m_ppMatrix[0]+i*m_nXSize;

  87.     memset(m_ppMatrix[0], 0, m_nMemorySize);
  88.     m_bCreated = true;
  89.     row.m_ppMatrix = m_ppMatrix;
  90.     row.m_nXSize   = m_nXSize;
  91. }

  92. template<class T>
  93. CMatrix<T>::CMatrix(const CMatrix& matrix)
  94. {
  95.     m_nXSize = matrix.m_nXSize;
  96.     m_nYSize = matrix.m_nYSize;
  97.     m_nMemorySize = m_nYSize*m_nXSize*sizeof(T);

  98.     m_ppMatrix    = new T* [m_nYSize];
  99.   //  ASSERT(m_ppMatrix!=NULL);

  100.     m_ppMatrix[0] = new T  [m_nYSize*m_nXSize];
  101.   //  ASSERT(m_ppMatrix[0]!=NULL);

  102.     for (int i=1; i<m_nYSize; i++)
  103.         m_ppMatrix[i] = m_ppMatrix[0]+i*m_nXSize;

  104.     memcpy(m_ppMatrix[0],matrix.m_ppMatrix[0], m_nMemorySize);

  105.     m_bCreated = true;
  106. }


  107. template<class T>
  108. CMatrix<T>& CMatrix<T>::operator= (const CMatrix& matrix)
  109. {
  110.     if (this == &matrix) return *this;

  111.   //  ASSERT(m_nXSize == matrix.m_nXSize &&
  112.    //     m_nYSize == matrix.m_nYSize);
  113.     memcpy(m_ppMatrix[0],matrix.m_ppMatrix[0], m_nMemorySize);

  114.     return *this;
  115. }
  116. template<class T>
  117. T CMatrix<T>::GetMinValue()
  118. {
  119.     T minValue = m_ppMatrix[0][0];
  120.     int i,j;

  121.     for (i=0; i<m_nYSize; i++)
  122.         for (j=0; j<m_nXSize; j++)
  123.         {
  124.             if(m_ppMatrix[i][j]<minValue)
  125.                 minValue = m_ppMatrix[i][j];
  126.         }
  127.         return minValue;
  128. }

  129. template<class T>
  130. T CMatrix<T>::GetMaxValue()
  131. {
  132.     T maxValue = m_ppMatrix[0][0];
  133.     int i,j;

  134.     for (i=0; i<m_nYSize; i++)
  135.         for (j=0; j<m_nXSize; j++)
  136.         {
  137.             if(m_ppMatrix[i][j]>maxValue)
  138.                 maxValue = m_ppMatrix[i][j];
  139.         }
  140.         return maxValue;
  141. }

  142. template<class T>
  143. CMatrix<T> CMatrix<T>::operator+ (const T& item)
  144. {
  145.     int i, j;

  146.     CMatrix<T> mtrx(m_nYSize, m_nXSize);
  147.     for (i=0; i<m_nYSize; i++)
  148.         for (j=0; j<m_nXSize; j++)
  149.         {
  150.             mtrx.m_ppMatrix[i][j] = m_ppMatrix[i][j]+item ;
  151.         }
  152.         return mtrx;
  153. }

  154. template<class T>
  155. CMatrix<T> CMatrix<T>::operator- (const T& item)
  156. {
  157.     int i, j;

  158.     CMatrix<T> mtrx(m_nYSize, m_nXSize);
  159.     for (i=0; i<m_nYSize; i++)
  160.         for (j=0; j<m_nXSize; j++)
  161.         {
  162.             mtrx.m_ppMatrix[i][j] = m_ppMatrix[i][j]-item ;
  163.         }
  164.         return mtrx;
  165. }

  166. template<class T>
  167. CMatrix<T>::~CMatrix()
  168. {
  169.     if (m_bCreated)
  170.     {
  171.         delete [] m_ppMatrix[0];
  172.         delete [] m_ppMatrix;
  173.     }
  174. }

  175. template<class T>
  176. int CMatrix<T>::GetXSize()
  177. {
  178.     return m_nXSize;
  179. }

  180. template<class T>
  181. T CMatrix<T>::SumAll()
  182. {
  183.     T sum = 0;
  184.     int i, j;

  185.     for (i=0; i<m_nYSize; i++)
  186.         for (j=0; j<m_nXSize; j++)
  187.         {
  188.             sum += m_ppMatrix[i][j];
  189.         }
  190.         return sum;
  191. }

  192. template<class T>
  193. int CMatrix<T>::GetYSize()
  194. {
  195.     return m_nYSize;
  196. }
  197. template<class T>        //Y(row) X(col)      
  198. T& CMatrix<T>::operator()(int i, int j)
  199. {
  200. //   ASSERT(i>=0 && i<m_nYSize &&
  201.   //      j>=0 && j<m_nXSize);

  202.     return m_ppMatrix[i][j];
  203. }

  204. //Fancy Indexing
  205. template<class T>
  206. Container2DRow<T> CMatrix<T>::operator [] (int i)
  207. {
  208.   //  ASSERT(i>=0 && i<m_nYSize);
  209.     row.i = i;
  210.     return row;
  211. }

  212. template<class T>
  213. const Container2DRow<T> CMatrix<T>::operator [] (int i) const
  214. {
  215.   //  ASSERT(i>=0 && i<m_nYSize);
  216.     row.i = i;
  217.     return row;
  218. }

  219. #include <stdio.h>
  220. #include <stdlib.h>
  221. main()
  222. {
  223.         CMatrix<int> a(20,20);
  224.         a[10][10]=1;
  225.         printf("%d\n",a[10][10]);
  226. }

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP