91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

string庫對字符串的查找算法詳解

發布時間:2024-10-09 17:27:25 來源:億速云 閱讀:94 作者:小樊 欄目:編程語言

string庫是C++標準庫中的一個重要組成部分,它提供了許多用于操作字符串的函數。其中,查找算法是string庫中的一個關鍵功能,主要用于在字符串中查找子字符串的位置。以下是string庫中查找算法的詳解:

  1. find()函數

    • find()函數是最常用的查找方法之一,用于在字符串中查找子字符串的第一個匹配項。
    • 語法:std::string::find(const std::string& str, size_t pos = 0),其中str是要查找的子字符串,pos是開始查找的位置(默認為0)。
    • 返回值:如果找到子字符串,則返回其在原字符串中的起始位置;否則返回std::string::npos
    • 示例:
      #include <iostream>
      #include <string>
      
      int main() {
          std::string s = "Hello, World!";
          std::string sub = "World";
          size_t pos = s.find(sub);
          if (pos != std::string::npos) {
              std::cout << "Found '" << sub << "' at position " << pos << std::endl;
          } else {
              std::cout << "'" << sub << "' not found" << std::endl;
          }
          return 0;
      }
      
  2. rfind()函數

    • rfind()函數用于在字符串中查找子字符串的最后一個匹配項。
    • 語法:std::string::rfind(const std::string& str, size_t pos = std::string::npos),其中str是要查找的子字符串,pos是開始查找的位置(默認為字符串末尾)。
    • 返回值:如果找到子字符串,則返回其在原字符串中的結束位置;否則返回std::string::npos
    • 示例:
      #include <iostream>
      #include <string>
      
      int main() {
          std::string s = "Hello, World!";
          std::string sub = "World";
          size_t pos = s.rfind(sub);
          if (pos != std::string::npos) {
              std::cout << "Found '" << sub << "' at position " << pos << std::endl;
          } else {
              std::cout << "'" << sub << "' not found" << std::endl;
          }
          return 0;
      }
      
  3. find_first_of()函數

    • find_first_of()函數用于在字符串中查找任何一個指定字符集中的字符的第一個匹配項。
    • 語法:std::string::find_first_of(const std::string& str, size_t pos = 0),其中str是字符集,pos是開始查找的位置(默認為0)。
    • 返回值:如果找到匹配字符,則返回其在原字符串中的位置;否則返回std::string::npos
    • 示例:
      #include <iostream>
      #include <string>
      
      int main() {
          std::string s = "Hello, World!";
          std::string chars = "abc";
          size_t pos = s.find_first_of(chars);
          if (pos != std::string::npos) {
              std::cout << "Found first character from set at position " << pos << std::endl;
          } else {
              std::cout << "No character from set found" << std::endl;
          }
          return 0;
      }
      
  4. find_last_of()函數

    • find_last_of()函數用于在字符串中查找任何一個指定字符集中的字符的最后一個匹配項。
    • 語法:std::string::find_last_of(const std::string& str, size_t pos = std::string::npos),其中str是字符集,pos是開始查找的位置(默認為字符串末尾)。
    • 返回值:如果找到匹配字符,則返回其在原字符串中的位置;否則返回std::string::npos
    • 示例:
      #include <iostream>
      #include <string>
      
      int main() {
          std::string s = "Hello, World!";
          std::string chars = "abc";
          size_t pos = s.find_last_of(chars);
          if (pos != std::string::npos) {
              std::cout << "Found last character from set at position " << pos << std::endl;
          } else {
              std::cout << "No character from set found" << std::endl;
          }
          return 0;
      }
      

這些查找算法在處理字符串時非常有用,可以幫助你快速定位子字符串或特定字符在字符串中的位置。需要注意的是,這些算法的時間復雜度可能因實現而異,但通常都是線性的,即O(n),其中n是字符串的長度。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

徐州市| 来安县| 武川县| 维西| 昆明市| 博爱县| 政和县| 买车| 万盛区| 陵川县| 额敏县| 莱州市| 琼结县| 北辰区| 安丘市| 宜君县| 三江| 阿荣旗| 龙游县| 临清市| 灵川县| 民权县| 无棣县| 七台河市| 怀宁县| 宁河县| 清涧县| 和平县| 耒阳市| 临西县| 安宁市| 章丘市| 密云县| 罗平县| 无极县| 海南省| 台南县| 远安县| 屏边| 冷水江市| 若尔盖县|