劍指offer——面試題42:翻轉單詞順序VS左旋轉字符串

void Reverse(char *pBegin, char *pEnd) { if(pBegin == NULL || pEnd == NULL) return; while(pBegin < pEnd) { char temp = *pBegin; *pBegin = *pEnd; *pEnd = te
相關文章
相關標籤/搜索