【劍指offer】面試題05:替換空格

05. 替換空格 請實現一個函數,把字符串 s 中的每一個空格替換成"%20"。web 輸入:s = "We are happy." 輸出:"We%20are%20happy." class Solution { public: string replaceSpace(string s) { int len1 = s.length() - 1; for(in
相關文章
相關標籤/搜索