`
jasonw68
  • 浏览: 154244 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

取出字符串中不重复的第一个字符(char应用)

    博客分类:
  • J2SE
阅读更多
package com.gg.test;
/*
*取出字符串中不重复的第一个字符
*
*
*/

public class TestChar
{
	public static void main(String[] args){
		System.out.println(NoRepeated("abbceea"));
	}

	public static Character NoRepeated(String str){
		int count =0;
		char c;
		//拿出每位中的每个字符
		for(int i=0;i<str.length();i++){
			c =str.charAt(i);
			for(int j=0;j<str.length();j++){//与原字符进行比较并记录出现的次数
				char cc = str.charAt(j);
				if(c == cc){
					count++;
				}
			}
			//返回首次出现的第一个字符
			if(count ==1){
				return c;
			}
			count =0;
		}
		return null;
	}
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics