zoukankan      html  css  js  c++  java
  • 你要的最后一个字符就在下面这个字符串里,这个字符是下面整个字符串中第一个只出现一次的字符。(比如,串是abaccdeff,那么正确字符就是b了)

    include "stdafx.h"

    #include<iostream>  
    
    #include<string>
    using namespace std;
    
    
    int main()
    {
    	int num;
    	cin >> num;
    	while (num!=0)
    	{
    		num--;
    		string str;
    	//	getline(cin,str);
    		cin >> str;
    		int flag = 0;
    		for (int i = 0;i < str.length();i++)
    		{
    			bool result = true;
    			for (int j = 0;j < str.length();j++)
    			{
    			/*	cout << "i:" << i<<" ";
    				cout << "j:" << j << endl;*/
    				if (i == j) continue;
    				if (str[i] == str[j])
    				{
    				//	cout << "执行了" << endl;
    					result = false;
    					break;
    				}
    			}
    
    			if (result == true)
    			{
    		//		cout << "执行了" << endl;
    				flag = i;
    		//		cout << "flag:"<<flag << endl;
    				break;
    			//	cout << str[i] << endl;
    			}
    		}
    
    		cout << str[flag] << endl;
    
    		
    	}
    	
    	
    		
    
    	return 0;
    }
  • 相关阅读:
    css布局
    css笔记
    css笔记
    css笔记
    HttpServletResponse简单理解
    SpringCloud Zuul网关的简单理解
    SpringCloud Zuul网关超时
    notepad++实用技巧
    Json常用代码
    含有Date属性的对象转化为Json
  • 原文地址:https://www.cnblogs.com/wdan2016/p/6561077.html
Copyright © 2011-2022 走看看