码迷,mamicode.com
首页 > 其他好文 > 详细

helloworld

时间:2014-11-19 00:25:42      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   for   div   log   代码   as   算法   tt   

非常高兴。

int vec_rotate(char *vec,int rotdist, int length) {
    int i,j,k,times;
    char t;
    times = gcd(rotdist,length);
    printf("%d\n",times);
    for(i=0;i<times;i++) {
        t = vec[i];
        j = i;
        while(1) {
            k = j+ rotdist;
            if(k>=length)
                k-=length;
            if(k==i)
                break;
            vec[j] = vec[k];
            j = k;
        }
        vec[j]=t;
    }
    return 0;
}

向量左旋算法1:"杂技"代码

  太高兴了。

helloworld

标签:blog   ar   for   div   log   代码   as   算法   tt   

原文地址:http://www.cnblogs.com/xiaohuanglv/p/4106934.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!