Skip to content

Commit 5626187

Browse files
committed
Merge pull request julycoding#113 from cpcs/master
Update 01.0.md
2 parents b007282 + 2a89767 commit 5626187

File tree

1 file changed

+12
-24
lines changed

1 file changed

+12
-24
lines changed

ebook/zh/01.0.md

+12-24
Original file line numberDiff line numberDiff line change
@@ -626,29 +626,17 @@ void my_rotate(char *begin, char *mid, char *end)
626626
然后,代码可以这么写:
627627

628628
```c
629-
//Copyright@ 小桥流水 && July
630-
//c代码实现,已测试正确。
631-
//July、updated,2011.04.17。
632-
char * invert(char *start, char *end)
633-
{
634-
char tmp, *ptmp = start;
635-
while (start != NULL && end != NULL && start < end)
636-
{
637-
tmp = *start;
638-
*start = *end;
639-
*end = tmp;
640-
start ++;
641-
end --;
642-
}
643-
return ptmp;
629+
//caopengcs
630+
void reverse(char *s,int from,int to) {
631+
while (from < to) {
632+
char t = s[from];
633+
s[from++] = s[to];
634+
s[to--] = t;
635+
}
644636
}
645-
646-
char *left(char *s, int pos) //pos为要旋转的字符个数,或长度,下面主函数测试中,pos=3。
647-
{
648-
int len = strlen(s);
649-
invert(s, s + (pos - 1)); //如上,X->X^T,即 abc->cba
650-
invert(s + pos, s + (len - 1)); //如上,Y->Y^T,即 def->fed
651-
invert(s, s + (len - 1)); //如上,整个翻转,(X^TY^T)^T=YX,即 cbafed->defabc。
652-
return s;
637+
void leftshift(char *s,int n,int m) {
638+
m %= n; //左移动大于n位和 %n是等价的
639+
reverse(s, 0, m - 1); //翻转[0..m - 1]
640+
reverse(s, m, n - 1); //翻转[m..n - 1]
641+
reverse(0, n - 1); //翻转[0..n - 1]
653642
}
654-
```

0 commit comments

Comments
 (0)