码迷,mamicode.com
首页 > 其他好文 > 详细

老师说这是2006面谷歌应聘笔试题

时间:2016-08-23 21:55:58      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

题目:在一个字符串中找到第一个只出现一次的字符。如输入abaccdeff,则输出b。

代码如下:

import java.util.Scanner;

public class Test2 {
public static char first(String s)
{
char result = ‘0‘;
char t;
int num[] = new int[50];
for (int i = 0; i < s.length(); i ++)
{
t = s.charAt(i);
if ( t >= ‘a‘ && t <= ‘z‘ )
{
num[t - ‘a‘]++;
}
else if (t >= ‘A‘ && t <= ‘Z‘)
{
num[t - ‘A‘ + 26] ++;
}
}
for (int i = 0; i < num.length; i ++)
{
if (num[i] == 1)
{
if (i >= 0 && i <=26)
{
result = (char)(i + ‘a‘);
}
else
result = (char)(i - 26 + ‘A‘);
break;
}
}
return result;
}
public static void main(String[] args) {

System.out.println("请输入字符串:");
Scanner reader = new Scanner(System.in);
String s = reader.next();
char c = first(s);
System.out.println(c);
}
}

 

老师说这是2006面谷歌应聘笔试题

标签:

原文地址:http://www.cnblogs.com/Slam945/p/5800721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!