Loading [MathJax]/extensions/tex2jax.js

搜尋此網誌

[C/C++][矩陣轉置]

  1. /*
  2. * File Name: Matrix_Transpose
  3. * Author: MH
  4. * Since 2011/03/21
  5. * Toolkit: Dev C++
  6. */
  7.  
  8. # include <stdlib.h>
  9. # include <stdio.h>
  10.  
  11. int main(){
  12.  
  13.     int i, j, count=0, temp;
  14.     int c[3][3] = {{1,2,3},{4,5,6},{7,8,9}};
  15.  
  16.     printf("before transposing\n");
  17.  
  18.     for(i=0; i<3; i++){
  19.  
  20.         printf("|");
  21.  
  22.         for(j=0; j<3; j++){
  23.             printf("% -3d", c[i][j]);
  24.         }
  25.  
  26.         printf("|\n");
  27.  
  28.     }
  29.  
  30.     printf("\nafter transposing\n");
  31.  
  32.     for(i=0; i<3; i++){
  33.  
  34.         for(j=i; j<3; j++){
  35.             temp = c[i][j];
  36.             c[i][j] = c[j][i];
  37.             c[j][i] = temp;
  38.             count++;
  39.         }
  40.  
  41.     }
  42.  
  43.     for(i=0; i<3; i++){
  44.  
  45.         printf("|");
  46.  
  47.         for(j=0; j<3; j++){
  48.             printf("% -3d", c[i][j]);
  49.         }
  50.  
  51.         printf("|\n");
  52.  
  53.     }
  54.  
  55.     printf("\ncount of swaps = %d times\n\n", count);
  56.  
  57.     system("Pause");
  58.     return 0;
  59. }

在作矩陣轉置的時候,常會有人在第二層迴圈時寫成

for(i=0; i<3; i++){
    for(j=0; j<3; j++){
        temp = c[i][j];
        c[i][j] = c[j][i];
        c[j][i] = temp;
        count++;
    }
}


這樣會造成轉置後的元素再被轉置一次,所以執行時會發現矩陣根本沒變,因此轉過的就不用再轉了,這就是第二層設成j=i的原因

另外方正矩陣對角線轉置之後還是自己,所以i=j時其實是不用轉的,可以將程式碼改成下面的形式

printf("\nafter transposing\n");

for(i=0; i<3; i++){
   for(j=i+1; j<3; j++){
       temp = c[i][j];
       c[i][j] = c[j][i];
       c[j][i] = temp;
       count++;
   }
}


如此一來可以減少不必要的轉置

沒有留言:

張貼留言