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

hehe

时间:2014-11-19 00:14:54      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   os   sp   for   div   

hele

bubuko.com,布布扣
 1 int vec_rotate(char *vec,int rotdist, int length) {
 2     int i,j,k,times;
 3     char t;
 4     times = gcd(rotdist,length);
 5     printf("%d\n",times);
 6     for(i=0;i<times;i++) {
 7         t = vec[i];
 8         j = i;
 9         while(1) {
10             k = j+ rotdist;
11             if(k>=length)
12                 k-=length;
13             if(k==i)
14                 break;
15             vec[j] = vec[k];
16             j = k;
17         }
18         vec[j]=t;
19     }
20     return 0;
21 }
22 
23 向量左旋算法1:"杂技"代码
haha

dd

hehe

标签:style   blog   http   ar   color   os   sp   for   div   

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

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