在 C++ 中反转字符串使用反向迭代器?
我有以下代码,但我似乎无法找到一种方法来反转此处的字符串:
stringstream convert;
string y="";
string z="";
convert << x;
string::reverse_iterator rit;
y=convert.str();
int j=0;
for (rit = y.rbegin(); rit < y.rend(); rit++){
z[j] = *rit;
j++;
}
有人可以帮我解决这个问题吗?谢谢!
I have the following code and I just can't seem to figure out a way to get the strings reversed here:
stringstream convert;
string y="";
string z="";
convert << x;
string::reverse_iterator rit;
y=convert.str();
int j=0;
for (rit = y.rbegin(); rit < y.rend(); rit++){
z[j] = *rit;
j++;
}
Can someone help me out with this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或者您可以在构造时执行此操作:
如果您想就地修改字符串,请使用 std::reverse:
Or you can do it upon construction:
If you want to modify a string in place, use std::reverse:
我会这样做:
不需要编写手动循环!
I'd do this:
No need to write a manual loop!
使用 std::reverse 更容易。
Using std::reverse is easier.
我认为您的问题出在这个循环中:
请注意,您正在不同位置写入字符串
z
。但是,您实际上尚未初始化z
以便其中包含任何元素,因此这是写入不存在的位置,从而导致未定义的行为。要解决此问题,请尝试在末尾附加新字符,而不是写入 z 中的位置:
I think that your problem is in this loop:
Notice that you're writing into the string
z
at various positions. However, you haven't actually initializedz
so that there's any elements in it, so this is writing to nonexistent locations, which results in undefined behavior.To fix this, instead of writing to locations in z, try appending new characters to the end: