以下是一個示例代碼,演示了如何在C++中實現自定義的strrchr功能:
#include <iostream>
const char* custom_strrchr(const char* str, char ch) {
const char* result = nullptr;
while (*str) {
if (*str == ch) {
result = str;
}
str++;
}
return result;
}
int main() {
const char* str = "hello world";
char ch = 'o';
const char* result = custom_strrchr(str, ch);
if (result != nullptr) {
std::cout << "Last occurrence of '" << ch << "' in '" << str << "' is at index " << result - str << std::endl;
} else {
std::cout << "'" << ch << "' not found in '" << str << "'" << std::endl;
}
return 0;
}
在這個示例中,custom_strrchr
函數接受一個字符串和一個字符作為參數,在字符串中查找字符的最后一個匹配,并返回指向該位置的指針。在main
函數中,我們調用custom_strrchr
函數來查找字符串中字符'o'
的最后一個匹配,并輸出結果。
當我們運行這段代碼時,將得到以下輸出:
Last occurrence of 'o' in 'hello world' is at index 7