您好,登錄后才能下訂單哦!
/* 請實現一個函數,將一個字符串中的空格替換成“%20”。 例如,當字符串為We Are Happy.則經過替換之后的字符串為 We%20Are%20Happy。 */ #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; class Solution { public: void replaceSpace(char *str, int length) { for (int i = 0; i < length; ++i){ if (*(str + i) == ' '){ length += 2; memset(str + length-2, 0, 2); for (int j = length-1; j > i; --j){ *(str + j) = *(str + j - 2); } *(str + i) = '%'; *(str + i + 1) = '2'; *(str + i + 2) = '0'; ++i; ++i; } } *(str + length) = '\0'; } }; void foo() { char str[100] = "We Are Happy"; int len = strlen(str); Solution sol; sol.replaceSpace(str, len); cout << str << endl; //如果返回時,str數組長度出現了變化,就會出現Stack around the variable 'str' was corrupted } int main() { foo(); return EXIT_SUCCESS; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。