美文网首页
【通俗易懂C++ STL模板库】容器 遍历 查找、排序、拷贝、替

【通俗易懂C++ STL模板库】容器 遍历 查找、排序、拷贝、替

作者: 编程小兔崽 | 来源:发表于2018-10-19 16:05 被阅读7次

String 概念

string 是 STL的字符串类型,通常用来表示字符串。而在使用 string 之前,字符串通 常是用 char* 表示的。string 与 char* 都可以用来表示字符串, 那么二者有什么区别呢?

string 和 char*的比较 

string 封装了 char* ,管理这个字符串,是一个 char*型的容器。

string 不用考虑内存释放和越界。 

string 管理 char* 所分配的内存。每一次 string 的复制,取值都由 string 类负责维 护,不用担心复制越界和取值越界等。 

string 提供了一系列的字符串操作函数(这个等下会详讲) 查找 find,拷贝 copy,删除 erase,替换 replace,插入 insert 

string 的构造函数

默认构造函数: string(); // 构造一个空的字符串 string s1。 拷贝构造函数: string(const string &str); // 构造一个与 str 一样的 string。如 string s1(s2)。 带参数的构造函数 string(const char *s); // 用字符串 s初始化 string(int n,char c); // 用 n 个字符 c 初始化

string 的存取字符操作

string 类的字符操作:

const char &operator[] (int n) const; 

const char &at(int n) const; 

char &operator[] (int n); 

char &at(int n); 

operator[] 和 at()均返回当前字符串中第 n 个字符,但二者是有区别的。 

主要区别在于 at()在越界时会抛出异常, []在刚好越界时会返回 (char)0,再继续越界时,编 译器直接出错。如果你的程序希望可以通过 try,catch 捕获异常,建议采用 at()。

从 string 取得 const char* 的操作

const char *c_str() const; // 返回一个以 '\0' 结尾的字符串的首地址

把 string 拷贝到 char* 指向的内存空间的操作

int copy(char *s, int n, int pos=0) const; 把当前串中以 pos 开始的 n 个字符拷贝到以 s 为起始位置的字符数组中, 返回实际拷贝的数 目。注意要保证 s所指向的空间足够大以容纳当前字符串,不然会越界。

string 的长度

int length() const; // 返回当前字符串的长度。长度不包括字符串结尾的 '\0' 。 bool empty() const; // 当前字符串是否为空

string 的赋值

string &operator=(const string &s);// 把字符串 s 赋给当前的字符串 string &assign(const char *s); // 把字符串 s 赋给当前的字符串 string &assign(const char *s, int n); // 把字符串 s的前 n 个字符赋给当前的字符串 string &assign(const string &s); // 把字符串 s赋给当前字符串 string &assign(int n,char c); // 用 n 个字符 c 赋给当前字符串 string &assign(const string &s,int start, int n); // 把字符串 s 中从 start 开始的 n 个字符赋给当 前字符串

string 字符串连接

string &operator+=(const string &s); // 把字符串 s 连接到当前字符串结尾 string &operator+=(const char *s);// 把字符串 s 连接到当前字符串结尾 string &append(const char *s); // 把字符串 s连接到当前字符串结尾 string &append(const char *s,int n); // 把字符串 s 的前 n 个字符连接到当前字符串结尾 string &append(const string &s); // 同 operator+=() string &append(const string &s,int pos, int n);// 把字符串 s 中从 pos 开始的 n 个字符连接到当 前字符串结尾 string &append(int n, char c); // 在当前字符串结尾添加 n 个字符 c

string 的比较

int compare(const string &s) const; // 与字符串 s 比较 int compare(const char *s) const; // 与字符串 s比较 compare 函数在 >时返回 1,<时返回 -1,==时返回 0。比较区分大小写,比较时参考字典 顺序,排越前面的越小。大写的 A 比小写的 a 小。

0string 的子串

string substr(int pos=0, int n=npos) const; // 返回由 pos开始的 n 个字符组成的子字符串

string 的查找和替换

查找 int find(char c,int pos=0) const; // 从 pos 开始查找字符 c 在当前字符串的位置 int find(const char *s, int pos=0) const; // 从 pos 开始查找字符串 s 在当前字符串的位置 int find(const string &s, int pos=0) const; // 从 pos开始查找字符串 s 在当前字符串中的位置 find 函数如果查找不到,就返回 -1 int rfind(char c, int pos=npos) const; // 从 pos 开始从后向前查找字符 c在当前字符串中的位 置

int rfind(const char *s, int pos=npos) const; 

int rfind(const string &s, int pos=npos) const; //rfind 是反向查找的意思,如果查找不到,返回 -1 

替换 string &replace(int pos, int n, const char *s);// 删除从 pos 开始的 n 个字符,然后在 pos 处插入 串 s string &replace(int pos, int n, const string &s); // 删除从 pos 开始的 n 个字符,然后在 pos 处 插入串 s void swap(string &s2); // 交换当前字符串与 s2 的值

//4 字符串的查找和替换 void main25() 

string s1 = "wbm hello wbm 111 wbm 222 wbm 333"; 

size_t index = s1.find("wbm", 0); 

cout << "index: " << index; 

// 求 itcast 出现的次数

size_t offindex = s1.find("wbm", 0); 

while (offindex != string::npos) 

cout << "在下标 index: " << offindex << " 找到 wbm\n"; 

offindex = offindex + 1; 

offindex = s1.find("wbm", offindex); 

// 替换

string s2 = "wbm hello wbm 111 wbm 222 wbm 333"; 

s2.replace(0, 3, "wbm"); 

cout << s2 << endl; 

// 求 itcast 出现的次数

offindex = s2.find("wbm", 0); 

while (offindex != string::npos) 

cout << "在下标 index: " << offindex << " 找到 wbm\n"; 

s2.replace(offindex, 3, "WBM"); 

offindex = offindex + 1; 

offindex = s1.find("wbm", offindex); 

} cout << "替换以后的 s2:" << s2 << endl; 

String 的区间删除和插入

string &insert(int pos, const char *s); 

string &insert(int pos, const string &s); // 前两个函数在 pos 位置插入字符串 s string &insert(int pos, int n, char c); // 在 pos 位置插入 n 个字符 c 

string &erase(int pos=0, int n=npos); // 删除 pos 开始的 n 个字符,返回修改后的字符串

string 算法相关

void main27() 

string s2 = "AAAbbb"; 

transform(s2.begin(), s2.end(), s2.begin(), toupper); 

cout << s2 << endl; 

string s3 = "AAAbbb"; 

transform(s3.begin(), s3.end(), s3.begin(), tolower); 

cout << s3 << endl; 

}

每天进步一点点,如果有用给小编点个赞

专注Linux C/C++和算法知识学习分享总结

欢迎关注交流共同进

相关文章

网友评论

      本文标题:【通俗易懂C++ STL模板库】容器 遍历 查找、排序、拷贝、替

      本文链接:https://www.haomeiwen.com/subject/ljxuzftx.html