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

溫馨提示×

溫馨提示×

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

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

C++中 string 中的常用方法使用心得

發布時間:2020-10-17 14:45:07 來源:腳本之家 閱讀:305 作者:maoqifan 欄目:編程語言

string 字符串在所有的語言中都非常重要,c++也不例外,接下來我們將介紹string中的常用方法

1. size() 和 length() 函數 : 他們返回字符串的真實長度,且不會因為空格而截斷,這兩個方法完全等價,使用及輸出如下:

#include<iostream>
#include<string>
using namespace std;
 
int main(void)
{
  string s = "dasddasd";
  printf("size()返回的長度為:%lu\nlength()返回的長度為:%lu",s.size(),s.length());
  return 0;
}

C++中 string 中的常用方法使用心得

2. find()函數和rfind()函數 : 這兩個函數用于查找字串在母串中的位置,并且返回該位置,當然如果找不到就會返回一個特別的標記string::nops,而find()函數是從字符串開始指針向后進行查找,rfind()函數是從字符串的結束指針開始向前查找,其使用及輸出如下:

#include<iostream>
#include<string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  int index = s.find("h");   // 從串首向后查找
  int index2 = s.find("h",2)  // 固定位置后子串在母串的位置
  int index1 = s.rfind("h"); // 從串尾向前查找
  printf("(find()):字母h在母串中的位置為:%d\n", index); 
  printf("(rfind()):字母h在母串中的位置為:%d", index1);
  return 0;
}

C++中 string 中的常用方法使用心得

值得注意的是我們可以通過組合使用這兩個函數來實現判斷該子串是否唯一存在于母串中,其實現代碼如下:

#include<iostream>
#include<string>
using namespace std;

inline bool whetherOnly(string &str,string &base){
  return base.find(str) == base.rfind(str); 
}

3. find_last_of()函數和find_first_of()函數:從函數名我們也可以知道find_last_of()函數是找這個子串在母串中最后一次出現的位置并且將該位置返回;而find_first_of()函數是找這個子串在母串中最后一次出現的位置并將該位置返回,其使用及輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
 
  int index = s.find_first_of("h");
  int index1 = s.find_last_of("h");
  printf("(find_first_of()):字母h在母串中的位置為:%d\n", index);
  printf("(find_last_of()):字母h在母串中的位置為:%d", index1);
}

C++中 string 中的常用方法使用心得

4.assign()函數:該函數用于將目標串的值復制到該串上,并且只復制值,其使用及輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  s.clear();
  s.assign("hello world");
  cout<<s<<endl;
  
}

C++中 string 中的常用方法使用心得

5.clear()函數,把當前字符串清空,這時候如果調用string::size()函數或string::length()函數將返回0,其使用及輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  s.clear();
  cout<<"clear后的串的長度"<<s.size()<<endl;
}

C++中 string 中的常用方法使用心得

6.resize()函數,該函數可以將字符串變長到指定長度,若小于原本字符串的長度,則會截斷原字符串;這個函數的一個重載形式是str.resize(length,'s') 可以用該輸入字符's'來對字符串進行擴充至length的長度,該函數的使用及輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  s.resize(5);    // s會變為 hello
  cout<<s<<endl;
  s.resize(10,'C'); // s 會變為 helloCCCCC
  cout<<s<<endl;
  
}

C++中 string 中的常用方法使用心得

7. replace(pos,len,dist)函數: 該函數用于將該串從pos位置開始將長度為len的字串替換為dist串,值得注意的是該函數只替換一次,這與市面上的py和java等語言不一樣,需要留意,該函數的使用和輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  s.replace(s.find("h"),2,"#"); // 把從第一個h開始的兩個字符變為一個字符 #
  cout<<"替換后的字符串為: "<<s<<endl;
  
}

C++中 string 中的常用方法使用心得

那么既然C++本身不提供,替換所有子串的函數,我們就自己實現一個,其代碼如下:

// 替換字符串里的所有指定字符
string replace(string &base, string src, string dst) //base為原字符串,src為被替換的子串,dst為新的子串
{
  int pos = 0, srclen = src.size(), dstlen = dst.size();
  while ((pos = base.find(src, pos)) != string::npos) 
  {
    base.replace(pos, srclen, dst);
    pos += dstlen;
  }
  return base;
}

8. erase(index,length)函數:該函數刪除index位置后length長度的子串,其代碼及輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  s.erase(s.find("h"),3);
  cout<<"擦除過后的串"<<s<<endl; // 將會輸出lo worldh
}

C++中 string 中的常用方法使用心得

9.substr(index,length)函數:該函數從index開始截斷到長度為length并返回截斷的子串;值得注意的是,該函數不改變母串的值,其使用及輸出如下:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  s = s.substr(0,5); 
  cout<<"截斷并賦值后的字符串為:"<<s<<endl; // 會輸出hello
}

C++中 string 中的常用方法使用心得

10 . push_back(char c)函數,pop_back()函數,append(string s)函數:push_back(char c)函數往該字符串的尾端加入一個字符;pop_back()函數從該字符串的尾端彈出一個字符;而apend(string s)函數將會在該字符串的末尾添加一個字符串,并且返回添加后字符串的引用。他們的使用及輸出如下圖所示:

#include <iostream>
#include <string>
using namespace std;

int main(void)
{
  string s = "hello worldh";
  // s.erase(s.find("h"),3);
  s.pop_back(); //彈出串的最后一個元素
  cout<<"彈出串尾元素后的字符串為: "<<s<<endl;
  s.push_back('s'); // 在串的最后添加一個字符
  cout<<"往串尾添加字符后的字符串為: "<<s<<endl;
  s.append("hhh"); // 在串的最后添加一個字符串
  cout<<"往串尾添加字符串后的字符串為: "<<s<<endl;
}

C++中 string 中的常用方法使用心得

以上就是string中比較重要的函數的全部內容了,既然我們學完了該內容,那我們接下來做一條題來熟悉一下這些函數中的一些吧(題目與代碼如下代碼塊,題目出自leetcode):

// 給你一份『詞匯表』(字符串數組) words 和一張『字母表』(字符串) chars。
// 假如你可以用 chars 中的『字母』(字符)拼寫出 words 中的某個『單詞』(字符串),那么我們就認為你掌握了這個單詞。

// 注意:每次拼寫時,chars 中的每個字母都只能用一次。
// 返回詞匯表 words 中你掌握的所有單詞的 長度之和。

// 輸入:words = ["cat","bt","hat","tree"], chars = "atach"
// 輸出:6
// 解釋:
// 可以形成字符串 "cat" 和 "hat",所以答案是 3 + 3 = 6。

// 輸入:words = ["hello","world","leetcode"], chars = "welldonehoneyr"
// 輸出:10
// 解釋:
// 可以形成字符串 "hello" 和 "world",所以答案是 5 + 5 = 10。

#include <iostream>
#include <vector>
#include <string>
using namespace std;
class Solution
{
public:
  int countCharacters(vector<string> &words, string chars)
  {
    int count = 0;
    bool flag = false;           // 標記
    string c_chars(chars);         // 構造c_chars保存chars
    for (int i = 0; i < words.size(); i++) // 迭代單詞表
    {
      if (c_chars.size() < words[i].size()) //如果單詞的字母多于可選字母,則跳過這個單詞
        continue;
      for (int j = 0; j < words[i].size(); j++) // 迭代可選擇的字母
      {
        int index = c_chars.find(words[i][j]);
        if (index != c_chars.npos) // 能找到這個字母
        {
          flag = true;
          c_chars.erase(index, 1); // 從c_chars()刪除這個字母
        }
        else
        {
          flag = false; // 不能找到,意味著不能組成這個單詞
          break;    //跳出這次循環
        }
      }
      if (flag) // 如果符合則計數加1
        count += words[i].size();
      c_chars.assign(chars); // 把chars的值在再次賦值給c_chars
    }
    return count;
  }
};

最后感謝大家的閱讀,string中這些的函數組合起來可以說是威力無窮,所以還是要好好掌握的。

總結

到此這篇關于C++中 string 中的方法的使用詳解(心得)的文章就介紹到這了,更多相關C++ string方法使用內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!

向AI問一下細節

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

AI

高阳县| 修武县| 哈尔滨市| 竹山县| 来凤县| 邛崃市| 六盘水市| 界首市| 通化市| 西充县| 白银市| 富民县| 万全县| 漳州市| 巴楚县| 南通市| 禹城市| 长岛县| 合川市| 永胜县| 泽普县| 攀枝花市| 都安| 宽甸| 高陵县| 息烽县| 光山县| 威信县| 神农架林区| 建湖县| 枣强县| 青海省| 年辖:市辖区| 丹凤县| 鹰潭市| 凤台县| 山阴县| 罗田县| 容城县| 宁南县| 子长县|