例如,字符串" abc"应该给3个独特的字符,而字符串" abcccd"会给出4个独特的角色。我不允许在这里使用Map,HashMap,TreeMap,Set,HashSet,StringBuffer或TreeSet。
到目前为止,我尝试使用for循环但是当我运行程序时,我不断获得0个唯一字符。我是Java的新手,所以我真的不知道自己在做什么。
编辑:所以我改变了代码并且我得到了一个结果,但它最终比我想要的少了1。我会输入' abc'结果将作为" 2个独特的字符"而不是三个。为了反击我在println语句中放置(uniqueChars + 1)。这是一个很好的修正吗?如果用户什么都不做,它仍会说有1个唯一的字符。
更新的代码:
userText = userText.toLowerCase(); // userText is declared earlier in the program
// as the user's input. Setting this to lowercase
// so it doesn't say "a" and "A" are two different
// characters.
int uniqueChars = 0;
for (int i = 0; i < lengthText-1; i++) { // lengthText is declared earlier
// as userText.length();
if (userText.charAt(i) != userText.charAt(i+1))
uniqueChars++;
}
System.out.println("there are " + (uniqueChars + 1) + " unique characters in your string.");
}
答案 0 :(得分:3)
这个怎么样?这是一个正则表达式解决方案而不是循环:
public static int countUniqueCharacters(String input)
{
String unique = input.replaceAll("(.)(?=.*?\\1)", "");
return unique.length();
}
如果程序需要不区分大小写,则可以使用此代码:
public static int countUniqueCharacters(String input)
{
String unique = input.replaceAll("(?i)(.)(?=.*?\\1)", "");
return unique.length();
}
您可以使用return input.replaceAll(...).length();
.
匹配任何字符(...)
创建一个捕获组,稍后将引用(?=...)
创建了一个前瞻,在输入中向前看.*?
匹配字符及其匹配(非贪婪匹配)\\1
与第一个捕获组匹配(?i)
设置不区分大小写的标记因此,正则表达式将查找字符串中稍后有重复的任何字符,然后replaceAll
将用空字符串替换它。因此,"cabbacbdbadbcabdaadcb"
之类的输入变为"adcb"
(保留每个唯一字符的最后一个)。然后,使用包含唯一字符的字符串,该字符串的长度就是答案。
如果由于某种原因,你需要唯一字符串和,你需要原始顺序,你必须在剥离重复字符之前反转原始字符串(然后反转它)当你完成时再次)。这将需要第三方库StringBuffer
或循环。
答案 1 :(得分:2)
这就是我提出的:
public static int countUniqueCharacters(String s) {
String lowerCase = s.toLowerCase();
char characters[] = lowerCase.toCharArray();
int countOfUniqueChars = s.length();
for (int i = 0; i < characters.length; i++) {
if (i != lowerCase.indexOf(characters[i])) {
countOfUniqueChars--;
}
}
return countOfUniqueChars;
}
我只检查每个字符的索引,如果它与原始索引不同,则会出现多次。
答案 2 :(得分:1)
您可以制作名为String
的新uniqueChars
并将其初始化为""
。对您要检查的String
中的字符进行迭代。如果uniqueChars.contains(charToCheck)
为false
,则将该字符附加到uniqueChars
。在循环结束时,uniqueChars.length()
会告诉您有多少独特字符。它的丑陋和低效但它应该有用。
答案 3 :(得分:1)
使用ArrayList
并添加一个字符(如果不存在):
list = new ArrayList<String>();
for ( /* */ ) { // same for loop you wrote
String character = (String) text.charAt(i);
if(!list.contains(character)) { // note the '!'
list.add(character);
}
}
// and finally
int quantity = list.size();
答案 4 :(得分:1)
以下是如何编写文件,如何读取同一文件以及重复特定字符的计数次数的程序:
package filereadexple;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
/*
* This is a program here I am creating a file by using "filewriter"
* and it is named as count.char and I am reading a same file and
* then how count number of times the particular character repeated.
*/
public class CountNoOfPartChar {
public static void main (String args[]){
File file = new File ("count.char");
try{
FileWriter fw = new FileWriter("count.char");
fw.write("In Xanadu did Kubla Khan");
fw.write("\r\n");
fw.write("A stately pleasure-dome decree:");
fw.write("\r\n");
fw.write("Where Alph, the sacred river, ran");
fw.write("\r\n");
fw.write("Through caverns measureless to man");
fw.write("\r\n");
fw.write("Down to a sunless sea.");
fw.close();
FileInputStream fis = new FileInputStream(file);
int i;
int occurs = 0;
char current;
while ((i=fis.available()) > 0){
current = (char)fis.read();
if(current == 'a'){
occurs++;
}
}
System.out.println("The number of particular character repeated is : " + occurs);
}
catch (Exception e){
System.out.println(e.getMessage());
}
}
}
答案 5 :(得分:0)
使用矢量。
char[] letters = new char[26];
for (char c : letters)
{
letters[c]=0;
}
然后对于找到的每个字母,增加向量中的位置。如果任何条目的计数器大于1,则重复
答案 6 :(得分:0)
如何将它放入数组,按字母顺序排序,然后应用你的逻辑(比较邻接)?
v = sort(v);//your sort method
int count = 0;
for (int i = 0;i< lengthText-1; i++)
{ if v[i] == v[i + 1] {
i++;
} else {
count++;
}
}
顺便说一句,您的程序无法正常工作,因为您在for循环中执行了i == lengthText-1
。
答案 7 :(得分:0)
与@Alexandre Santos相同的逻辑,但使用了工作示例代码。复杂性是O(N)。 仅适用于没有空格,数字或特殊字符的字母字符串。
这也可以用作counting sort。
public class CountChars
{
public static int countUniqCharacters(String str) {
int[] counts = new int['z' - 'a' + 1];
char[] arr = str.toLowerCase().toCharArray();
for (char c: arr) {
counts[c - 'a']++;
}
int unique = 0;
for (int i: counts) {
if (i > 0)
unique++;
}
return unique;
}
public static void main(String[] args) {
System.out.println("Unique char in " + args[0]
+ " is " + CountChars.countUniqCharacters(args[0]));
}
}
答案 8 :(得分:0)
public class CharacterCount {
public static void main(String[] args) {
String s = "aaabbbcccddd";
String t="";
int count = 0;
//Loop to find unique characters in a string and add it to new string called t
//if a character is not found in a string indexOf returns -1
for (int i = 0; i < s.length(); i++) {
if (t.indexOf(s.charAt(i))==-1) t+=s.charAt(i);
}
//For every character new string t , loop though s find the count and display
for (int i = 0; i < t.length(); i++) {
count = 0;
for (int j = 0; j < s.length(); j++) {
if (t.charAt(i) == s.charAt(j)) count++;
}
System.out.println(t.charAt(i) + " " + count);
}
}
}
答案 9 :(得分:0)
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.nextLine();
getvalues(s1);
}
public static void getvalues(String s1) {
String s2 = s1.toLowerCase();
StringBuffer sb = new StringBuffer(s2);
int l = sb.length();
int count = 0;
for (int i = 0; i < l; i++) {
count = 0;
for (int j = i + 1; j < l; j++) {
if (sb.charAt(i) == sb.charAt(j)) {
sb.deleteCharAt(j);
count++;
j--;
l--;
}
}
if (count > 0) {
sb.deleteCharAt(i);
i--;
l--;
}
}
if (sb.length() == 0) {
System.out.println(-1);
} else
System.out.println(sb.length());
}
}