亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在C++中實現自定義的strrchr功能

c++
小樊
81
2024-08-15 11:11:38
欄目: 編程語言

以下是一個示例代碼,演示了如何在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

0
璧山县| 农安县| 深水埗区| 南昌县| 英山县| 自贡市| 青海省| 利川市| 铁岭县| 和龙市| 肇源县| 凉城县| 丰顺县| 连南| 梅河口市| 云浮市| 浪卡子县| 万源市| 旬阳县| 达拉特旗| 兴宁市| 五指山市| 丰原市| 拜泉县| 洞头县| 新泰市| 大埔县| 枝江市| 资源县| 大兴区| 闽侯县| 蚌埠市| 磴口县| 明水县| 南阳市| 南京市| 原阳县| 安岳县| 乌兰察布市| 石台县| 山阳县|