//字符串查重,利用set容器的特性
#include <iostream>
#include <set>
#include <assert.h>
using namespace std;
void deleteSame(const char *str)
{
assert(str != NULL);
set<char> s;
for(int i=0; str[i] != '\0'; ++i)
{
s.insert(str[i]);
}
for(set<char>::const_iterator i=s.begin(); i != s.end(); ++i)
{
cout << *i ;
}
//return s;
}
void main()
{
const char *s = "abbbccccddde";
cout << s <<endl;
deleteSame(s);
}
字符串查重-玩赖版
最新推荐文章于 2023-03-21 17:36:35 发布