首页 > 其他 > 详细

随记------代码片段

时间:2014-06-11 13:27:10      阅读:374      评论:0      收藏:0      [点我收藏+]

1. 二维数组转置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
void matrix_transpose(int *src[], int *dst[], int x, int y)
{
    int i, j;
    int *psrc, *pdst;
    i = j = 0;
 
    psrc = (int *)src;
    pdst = (int *)dst;
    for(i = 0; i < x; i++)
    {
        for(j = 0; j < y; j++)
        {
            *(pdst + j*x + i) = *(psrc + i*y + j);
        }
    }
}

  

随记------代码片段,布布扣,bubuko.com

随记------代码片段

原文:http://www.cnblogs.com/chagmf/p/3772431.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!