Cracking The Coding Interview 1.5
摘要:
//原文://// Write a method to replace all spaces in a string with ‘%20’.//#include using namespace std;char* replace(char * str){ if (str == NULL) { re... 阅读全文
posted @ 2014-04-02 15:52 Vulkan 阅读(123) 评论(0) 推荐(0) 编辑