代码如下:
#include <iostream> #include <string> using namespace std; char findfirstoncechar(string &str) { int arr[255] = {0}; int i; for (i = 0; i<str.size();i++) { arr[str[i]]++; } for(i = 0; i < 255 ; i++ ) { if(arr[i] == 1) { return i; } } return -1; } int main () { string str="abcecbag"; char c= findfirstoncechar(str); cout<< c << endl; return 0; }
时间: 2024-10-07 16:40:19