您好,登錄后才能下訂單哦!
//有一個字符數組的內容為:"student a am i", 請你將數組的內容改為"i am a student". //要求: //不能使用庫函數。只能開辟有限個空間(空間個數和字符串的長度無關)。 // #include <stdio.h> #include <string.h> void fanw(char *left, char *right) //把每個單詞單詞翻轉 { char* pleft = left; char* pright = right; char temp; while (pleft < pright) { temp = *pleft; *pleft = *pright; *pright = temp; pleft++; pright--; } } void fans(char *p) //把翻轉后的單詞再翻轉 { while (*p != '\0') { char *pst = p; while (*p != '\0' && *p != ' ') { p++; } fanw(pst, p - 1); p++; } } int main() { char p[30] = "student a am i"; int len = strlen(p); printf("原字符串為 : %s\n", p); printf("翻轉后的字符串為 :"); fanw(p, p + len - 1); fans(p); printf("%s\n", p); return 0; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。