统计字符串你中每个字符的个数



决定好好学习java,一点点感悟,一点点进步,记下自己在java世界的足迹

2014--8--9

计算字符串中每个字符出现的个数

 

import java.util.HashMap;

import java.util.Iterator;

import java.util.Map;

import java.util.Set;

 

class f {

static Map Count(String str) {

Map<String, Integer> map = new HashMap<String, Integer>();

String temp = "";

for (int i = 0; i < str.length(); i++) {

temp = str.substring(i, i + 1);

if (map.size() == 0) {

map.put(temp, 1);

else {

if (map.get(temp) == null) {

map.put(temp, 1);

else {

int n = map.get(temp);

n = n + 1;

map.put(temp, n);

 

}

}

}

 

return map;

 

}

 

public static void main(String[] args) {

Map map = Count("aba");

Set set = map.keySet();

Iterator it = set.iterator();

while (it.hasNext()) {

String key = (String) it.next();

int number = (Integer) map.get(key);

System.out.println(key + " have " + number);

}

}

 

}

2class f2 {

static void count(String str, String a[], int b[]) {

for (int i = 0; i < str.length(); i++) {

for (int j = 0; j < str.length(); j++) {

if (a[j] == null) {

a[j] = str.substring(i, i + 1);

b[j] += 1;

break;

}

if (a[j].equals(str.substring(i, i + 1))) {

b[j] += 1;

break;

}

}

 

}

 

}

 

public static void main(String[] args) {

String str = "aba";

String[] a = new String[str.length()];

int[] b = new int[str.length()];

count(str, a, b);

 

for (int i = 0; i < a.length; i++) {

if (a[i] != null)

System.out.println(a[i] + " have " + b[i]);

}

}

 

}

3

class d3 {

static String count(String str, int b[]) {

String s1 = "";

for (int i = 0; i < str.length(); i++) {

if (s1.indexOf(str.substring(i, i + 1)) == -1) {

s1 += str.substring(i, i + 1);

}

}

for (int i = 0; i < s1.length(); i++) {

b[i] = 0;

String s2 = s1.substring(i, i + 1);

for (int j = 0; j < str.length(); j++) {

if (s2.equals(str.substring(j, j + 1))) {

b[i] += 1;

 

}

}

}

 

return s1;

 

}

 

public static void main(String[] args) {

String str = "abaac";

int[] b = new int[str.length()];

String s1 = count(str, b);

for (int i = 0; i < s1.length(); i++) {

System.out.println(s1.substring(i, i + 1) + " have " + b[i]);

}

}

 

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值