比如:输入name输出n,输入teeter输出r,输入namename输出null
具体实现代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); String str = in.next(); for ( int i = 0 ; i < str.length() ; i++) { if (str.lastIndexOf(str. char (i)) == i && str.indexOf(str. char (i)) == i) { System.out.println(str. char (i)); break ; } } } } |
在这个实现代码中我们使用了String类的三个方法成员:
String.length():获取字符串的长度
String.charAt(int index):获取索引index的字符
String.lastIndexOf(char c):获取字符c最后一次出现在字符串中的索引
String.indexOf(char c):获取字符c第一次出现在字符串中的索引
其实我们也可以不使用字符串的这些方法就可以实现了,下面是我个人使用for循环来实现的代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); String str = in.next(); char [] cb = new char [str.length()]; //将字符串中的字符一次存入cb[] for ( int i = 0 ;i <str.length() ; i++) { cb[i] = str.charAt(i); } for ( int i = 0 ; i < str.length() ; i++) { for ( int j = 0 ; j < str.length() ; j++) { if (cb[i] == cb[j] && cb[i] != '0' ) { char c = cb[i]; for ( int z = 0 ; z < str.length() ; z++) { if (cb[z] == c) cb[z] = '0' ; } } } } for ( int i = 0 ; i <str.length() ; i++) { if (cb[i] != '0' ) { System.out.println(cb[i]); break ; } } } } |
这种方法可以实现,不过这种方法的时间复杂度特别的大,系统开销也特别大,因此我们最好不要使用循环嵌套,除非迫不得已,不然对系统开销是很大的。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/qq_27905183/article/details/51136802