从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

目录
相关文章
|
9天前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
37 4
|
10天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
34 4
|
1月前
|
Java
【编程基础知识】(讲解+示例实战)方法参数的传递机制(值传递及地址传递)以及String类的对象的不可变性
本文深入探讨了Java中方法参数的传递机制,包括值传递和引用传递的区别,以及String类对象的不可变性。通过详细讲解和示例代码,帮助读者理解参数传递的内部原理,并掌握在实际编程中正确处理参数传递的方法。关键词:Java, 方法参数传递, 值传递, 引用传递, String不可变性。
55 1
【编程基础知识】(讲解+示例实战)方法参数的传递机制(值传递及地址传递)以及String类的对象的不可变性
|
30天前
|
程序员 C++ 容器
在 C++中,realloc 函数返回 NULL 时,需要手动释放原来的内存吗?
在 C++ 中,当 realloc 函数返回 NULL 时,表示内存重新分配失败,但原内存块仍然有效,因此需要手动释放原来的内存,以避免内存泄漏。
|
30天前
|
安全 Java 测试技术
Java零基础-StringBuffer 类详解
【10月更文挑战第9天】Java零基础教学篇,手把手实践教学!
24 2
|
1月前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
27 4
|
1月前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
23 4
|
1月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
21 1
|
1月前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
1月前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)