取出一个字符串中字母出现的次数。如:字符串:"abcde%^kka27qoq" ,输出格式为: a(2)b(1)k(2)...

考虑到效率问题,鄙人发现网上应该有两种不同的方法,经过验证发现,用for循环实现比较快捷(花的时间少):

程序如下:

(1)for循环简单思路就是把源字符串转换成字符数组并挨个比较;

(2)另外一种方法是用Map集合,由于Map集合中是不允许有键重复,利用这一特点实现;

import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;


public class 计算字符个数效率 {
<span style="white-space:pre">	</span>public static void main(String[] args) {
<span style="white-space:pre">		</span>String string = "abcde%^kka27qoq";
<span style="white-space:pre">		</span>System.out.println(string);
<span style="white-space:pre">		</span>long start = System.nanoTime();
<span style="white-space:pre">		</span>fun1(string);
<span style="white-space:pre">		</span>long end = System.nanoTime();
<span style="white-space:pre">		</span>System.out.println("\ncost time:" + (end - start));
<span style="white-space:pre">		</span>start = System.nanoTime();
<span style="white-space:pre">		</span>fun2(string);
<span style="white-space:pre">		</span>end = System.nanoTime();
<span style="white-space:pre">		</span>System.out.println("\ncost time:" + (end - start));
<span style="white-space:pre">	</span>}


<span style="white-space:pre">	</span>public static void fun1(String str) {
<span style="white-space:pre">		</span>char[] cs = str.toCharArray();
<span style="white-space:pre">		</span>for (int i = 0; i < cs.length; i++) {
<span style="white-space:pre">			</span>if (cs[i] == ' ') {
<span style="white-space:pre">				</span>continue;
<span style="white-space:pre">			</span>}
<span style="white-space:pre">			</span>int count = 1;
<span style="white-space:pre">			</span>for (int j = i + 1; j < cs.length; j++) {
<span style="white-space:pre">				</span>if (cs[i] == cs[j]) {
<span style="white-space:pre">					</span>count++;
<span style="white-space:pre">					</span>cs[j] = ' ';
<span style="white-space:pre">				</span>}
<span style="white-space:pre">			</span>}
<span style="white-space:pre">			</span>System.out.print(cs[i] + "(" + count + ")");
<span style="white-space:pre">		</span>}
<span style="white-space:pre">	</span>}


<span style="white-space:pre">	</span>public static void fun2(String str) {
<span style="white-space:pre">		</span>Map<Character, Integer> map = new HashMap<Character, Integer>();
<span style="white-space:pre">		</span>char[] cs = str.toCharArray();
<span style="white-space:pre">		</span>for (int i = 0; i < cs.length; i++) {
<span style="white-space:pre">			</span>Integer count = map.get(cs[i]);
<span style="white-space:pre">			</span>if (count == null) {
<span style="white-space:pre">				</span>count = 0;
<span style="white-space:pre">			</span>}
<span style="white-space:pre">			</span>map.put(cs[i], count + 1);
<span style="white-space:pre">		</span>}
<span style="white-space:pre">		</span>Set<Entry<Character, Integer>> entrySet = map.entrySet();
<span style="white-space:pre">		</span>for (Entry<Character, Integer> entry : entrySet) {
<span style="white-space:pre">			</span>System.out.print(entry.getKey() + "(" + entry.getValue() + ")");
<span style="white-space:pre">		</span>}
<span style="white-space:pre">	</span>}
}

结果如下:


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值