文本信息熵

熵代表信息的紊乱程度,用公式表示为:


public class InfoEntropy {

	// 代表每个字母的出现的频率。
	public int[] count = new int[26];
	
	private double entropy;
	
	private int sumCount ;
	
	public InfoEntropy(String str){
		// 不区分大小写
		String lowStr = str.toLowerCase();
		for(int i = 0; i < lowStr.length(); i++){
			if (lowStr.charAt(i) >= 'a' && lowStr.charAt(i) <= 'z'){
				count[lowStr.charAt(i) - 'a']++;
				sumCount++;
			}
		}
		calEntropy();
	}
	
	//将频率作为概率,否者double值太小。
	public void calEntropy(){
		for(int i = 0; i < this.count.length; i++){
			if (count[i] == 0){
				continue;
			}
			this.entropy -= (double)((count[i]) * (Math.log((double)(count[i]))/ Math.log(2)));
		}
	}
	
	public double getEntropy(){
		return this.entropy;
	}
	
	public static void main(String[] args){
		String test = "I am a dog.";
		InfoEntropy entropy = new InfoEntropy(test);
		System.out.println(entropy.getEntropy());
	}
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值