从C语言到C++_11(string类的常用函数)力扣58和415(中)

简介: 从C语言到C++_11(string类的常用函数)力扣58和415

从C语言到C++_11(string类的常用函数)力扣58和415(上):https://developer.aliyun.com/article/1513666


4. string类对象的访问及遍历操作

这里 operator[] 是使用引用返回,是为了能够支持修改返回的变量。

我们就可以像数组一样操作string了。

迭代器是 STL 六大组件之一,是用来访问和修改容器的。


如果你是第一次接触 "迭代器的概念",不妨可以先把迭代器想象成 "像指针一样的类型"。


对于 string,无论是正着遍历,倒着遍历,下标 + [] 都足够好用,为什么还要迭代器呢?


当然,对于 string,下标和 [] 确实足够好用,我们在学习C语言的时候就先入为主地使用了,


确实可以不用迭代器。但是如果是其他容器(数据结构)呢?


比如 list、map / set  不支持 下标 + [] 遍历,迭代器就排上用场了,


这就是迭代器存在的意义。迭代器是通用的遍历方式。


对于 string,你得会用迭代器,但是一般我们还是喜欢用 下标 + [] 遍历。


迭代器有很多,此外还有反向迭代器、const 迭代器……


这些都可以通过看文档去了解和学习。对于迭代器后面还会详细讲解,


范围 for。


这个我们在讲 auto 关键字的时候讲过了,它是一个用起来是很甜的语法糖。


这个范围 for 虽然看起来和听上去都很强,又是自动迭代又是自动判断结束的,


但其实它底层也就是编译器在编译后把这段代码替换成了迭代器而已。

void test_string3()
{
  string s1("hello world");
  s1[0] = 'x';
  //s1[20];  内部会检查越界
  cout << s1 << endl;
 
  for (size_t i = 0; i < s1.size(); ++i)// 普通遍历string,每个字符+1
  {
    s1[i]++;
  }
  cout << s1 << endl;
 
  string::iterator it = s1.begin();// 迭代器遍历string,每个字符+1
  while (it != s1.end())
  {
    (*it)++;
    it++;
  }
  cout << s1 << endl;
 
  for (auto& e : s1)// 范围for遍历string,每个字符-1
  {
    e--;
  }
  cout << s1 << endl;
 
  string::reverse_iterator rit = s1.rbegin();// 迭代器逆置遍历string,每个字符-1
  while (rit != s1.rend())
  {
    cout << *rit;
    (*rit)--;
    ++rit;// 注意这里也是++
  }
  cout << endl;
  
  *(s1.begin()) = 'h';// 把第一个字母改成h -> s1[0] = 'h';
  cout << s1 << endl;
}

5. string类对象的修改操作

这个 c_str 有什么意义呢?

比如这里需要打开文件,fopen 第一个参数要求是 const char*,

所以这里怎么能直接放 string 是不行的,这时候可以用 .c_str()  就可以把字符串的地址返回出来。

简单接口演示:

void test_string4()
{
  string s("hello");
  s.push_back('-');
  s.push_back('-');
  s.append("world");
  cout << s << endl;
 
  string str("abcdefg");
  s += '@';
  s += str;
  s += "!!!";
  cout << s << endl;
 
  s.append(++str.begin(), --str.end());
  cout << s << endl;
 
  string copy(s.begin() + 3, s.end() - 3);
  cout << copy << endl;
 
  int ival = 2023;
  double dval = 3.14;
  cout << to_string(ival) << endl;
  cout << to_string(dval) << endl;
 
  string istr = "9999";
  string dstr = "9999.99";
  cout << stoi(istr) << endl;
  cout << stod(dstr) << endl;
}

上面 += 是最好用且最常用的,看看 rfind 和 find 的使用场景:

void DealUrl(const string& url)
{
  // 取出协议
  size_t pos1 = url.find("://");
  if (pos1 == string::npos)
  {
    cout << "非法url" << endl;
    return;
  }
  string protocol = url.substr(0, pos1);
  cout << protocol << endl;
 
  // 取出域名
  size_t pos2 = url.find('/', pos1 + 3);// 冒号位置+3开始往后找
  if (pos2 == string::npos)
  {
    cout << "非法url" << endl;
    return;
  }
  string domain = url.substr(pos1 + 3, pos2 - pos1 - 3);
  cout << domain << endl;
 
  // 取出路径
  string uri = url.substr(pos2 + 1);
  cout << uri << endl << endl;
}
 
void test_string5()
{
  string filename("test.cpp.tar.zip");// 取后缀
  size_t pos = filename.rfind('.');// 反向找
  if (pos != string::npos)
  {
    //string suff = filename.substr(pos, filename.size() - pos);
    string suff = filename.substr(pos);//不用像上一行算长度,直接让默认值取到最后
 
    cout << suff << endl;
  }
 
  string url1 = "https://cplusplus.com/reference/string/string/";// 对一个网址进行操作,可以多放几个试试
  DealUrl(url1);
}

6. string类非成员函数

上面的几个接口大家了解一下,后面的 OJ 题目中会有一些体现他们的使用。

string类中还有一些其他的操作,这里不一一列举,大家在不明白时查文档即可。

7. string的相关笔试题

1. 关于代码输出正确的结果是( )(vs2013 环境下编译运行)

int main()
{
  string a = "hello world";
  string b = a;
  if (a.c_str() == b.c_str())
  {
    cout << "true" << endl;
  }
  else cout << "false" << endl;
  string c = b;
  c = "";
  if (a.c_str() == b.c_str())
  {
    cout << "true" << endl;
  }
  else cout << "false" << endl;
  a = "";
  if (a.c_str() == b.c_str())
  {
    cout << "true" << endl;
  }
  else cout << "false" << endl;
  return 0;
}

A.false false false

B.true false false

C.true true true

D.true true false

2. 下面程序的输出结果正确的是( )

int main()
{
  string str("hello world");
  str.reserve(111);
  str.resize(5);
  str.reserve(50);
  cout << str.size() << " " << str.capacity() << endl;
  return 0;
}

A.10 50

B.5 50

C.5 111

D.10 111

3. 下面程序的输出结果正确的是( )

int main()
{
  string strText = "How are you?";
  string strSeparator = " ";
  string strResult;
  int size_pos = 0;
  int size_prev_pos = 0;
  while ((size_pos = strText.find_first_of(strSeparator, size_pos)) != string::npos)
  {
    strResult = strText.substr(size_prev_pos, size_pos - size_prev_pos);
    cout << strResult << " ";
    size_prev_pos = ++size_pos;
  }
  if (size_prev_pos != strText.size())
  {
    strResult = strText.substr(size_prev_pos, size_pos - size_prev_pos);
    cout << strResult << " ";
  }
  cout << endl;
  return 0;
}

A.Howareyou?


B.How Are You?


C.How are


D.How are you?


答案:


1. A


分析:a 和 b的值虽然相同,但是a.c_str()==b.c_str()比较的是存储字符串位置的地址,a和b是两个不同的对象,内部数据存储的位置也不相同,因此不相等,后面c="",a=""与b对象都没有任何的影响,所以都不相等


2. C


分析:


str.reserve(111); //调整容量为 111


str.resize(5);   //调整元素个数为 5


str.reserve(50);  //调整容量为 50,由于调整的容量小于已有空间容量,故容量不会减小


所以size=5 capacity=111


3. D


分析:程序的目的是以字符串strSeparator = " "作为分隔符,对字符串string strText = "How are you?";进行分割,每分割出一个单词就进行一次打印

从C语言到C++_11(string类的常用函数)力扣58和415(下):https://developer.aliyun.com/article/1513668?spm=a2c6h.13148508.setting.18.5e0d4f0eB41884

目录
相关文章
|
27天前
|
C语言 C++
C语言 之 内存函数
C语言 之 内存函数
31 3
|
18天前
|
存储 缓存 C语言
【c语言】简单的算术操作符、输入输出函数
本文介绍了C语言中的算术操作符、赋值操作符、单目操作符以及输入输出函数 `printf` 和 `scanf` 的基本用法。算术操作符包括加、减、乘、除和求余,其中除法和求余运算有特殊规则。赋值操作符用于给变量赋值,并支持复合赋值。单目操作符包括自增自减、正负号和强制类型转换。输入输出函数 `printf` 和 `scanf` 用于格式化输入和输出,支持多种占位符和格式控制。通过示例代码详细解释了这些操作符和函数的使用方法。
32 10
|
12天前
|
存储 算法 程序员
C语言:库函数
C语言的库函数是预定义的函数,用于执行常见的编程任务,如输入输出、字符串处理、数学运算等。使用库函数可以简化编程工作,提高开发效率。C标准库提供了丰富的函数,满足各种需求。
|
17天前
|
机器学习/深度学习 C语言
【c语言】一篇文章搞懂函数递归
本文详细介绍了函数递归的概念、思想及其限制条件,并通过求阶乘、打印整数每一位和求斐波那契数等实例,展示了递归的应用。递归的核心在于将大问题分解为小问题,但需注意递归可能导致效率低下和栈溢出的问题。文章最后总结了递归的优缺点,提醒读者在实际编程中合理使用递归。
43 7
|
17天前
|
存储 编译器 程序员
【c语言】函数
本文介绍了C语言中函数的基本概念,包括库函数和自定义函数的定义、使用及示例。库函数如`printf`和`scanf`,通过包含相应的头文件即可使用。自定义函数需指定返回类型、函数名、形式参数等。文中还探讨了函数的调用、形参与实参的区别、return语句的用法、函数嵌套调用、链式访问以及static关键字对变量和函数的影响,强调了static如何改变变量的生命周期和作用域,以及函数的可见性。
25 4
|
19天前
|
程序员 C++ 容器
在 C++中,realloc 函数返回 NULL 时,需要手动释放原来的内存吗?
在 C++ 中,当 realloc 函数返回 NULL 时,表示内存重新分配失败,但原内存块仍然有效,因此需要手动释放原来的内存,以避免内存泄漏。
|
22天前
|
存储 编译器 C语言
C语言函数的定义与函数的声明的区别
C语言中,函数的定义包含函数的实现,即具体执行的代码块;而函数的声明仅描述函数的名称、返回类型和参数列表,用于告知编译器函数的存在,但不包含实现细节。声明通常放在头文件中,定义则在源文件中。
|
30天前
|
存储 前端开发 C++
C++ 多线程之带返回值的线程处理函数
这篇文章介绍了在C++中使用`async`函数、`packaged_task`和`promise`三种方法来创建带返回值的线程处理函数。
43 6
|
28天前
|
C语言
c语言回顾-函数递归(上)
c语言回顾-函数递归(上)
31 2
|
30天前
|
Java 编译器 C语言
【一步一步了解Java系列】:Java中的方法对标C语言中的函数
【一步一步了解Java系列】:Java中的方法对标C语言中的函数
19 3