题目
判断字符串是不是回文序列
删除特定的字母
remove(s.begin(),s.end(),c)
的作用是找出需要删除的字符
s.erase(remove(s.begin(),s.end(),a),s.end())
表示从 remove()
操作得到的位置开始,删除到字符串末尾的部分
判断字符串是不是回文序列
删除特定的字母
remove(s.begin(),s.end(),c)
的作用是找出需要删除的字符
s.erase(remove(s.begin(),s.end(),a),s.end())
表示从 remove()
操作得到的位置开始,删除到字符串末尾的部分
相关推荐