實現一個函數,可以左旋字符串中的k個字符

#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> void Left_turn(char* p, int k) { assert(*p); int len = strlen(p); //求字符串的長度 //每次將第一個字符
相關文章
相關標籤/搜索