我模仿lucene的BytesRef写了一个CharsRefIntHashMap,实測效果并不如HashMap<String, Integer>。代码例如以下:

package com.dp.arts.lucenex.utils;

import org.apache.lucene.util.CharsRef;

public interface CharsRefIntMap

{

public static
abstract class CharsRefIntEntryAccessor {

public abstract
void access(char[] arr,
int offset, int length,
int value);

}

public void incKey(CharsRef key);

public void incKey(CharsRef key,
int add);

public void incKey(char[] arr,
int offset, int length);

public void incKey(char[] arr,
int offset, int length,
int add);

public int get(CharsRef key);

public int get(CharsRef key,
int no_entry_value);

public int get(char[] arr,
int offset, int length);

public int get(char[] arr,
int offset, int length,
int no_entry_value);

public int size();

public void forEach(CharsRefIntEntryAccessor accesor);

}


package com.dp.arts.lucenex.utils;





import java.util.Arrays;





import org.apache.lucene.util.CharsRef;





import com.dp.arts.lucenex.utils.CharsRefIntMap.CharsRefIntEntryAccessor;





public class CharsRefIntHashMap implements CharsRefIntMap

{

    public static final int DEFAULT_CAPACITY = 16;

    

    private char[][] arrs;

    private int[] offsets;

    private int[] lengths;

    private int[] ords;

    private int[] values;

    

    private int hashSize;

    private int halfHashSize;

    private int hashMask;

    private int count;

    

    public CharsRefIntHashMap() {

        this(DEFAULT_CAPACITY);

    }

    

    public CharsRefIntHashMap(int capacity) {

        assert capacity > 0 && ( (capacity & (capacity - 1)) == 0);

        

        arrs = new char[capacity][];

        offsets = new int[capacity];

        lengths = new int[capacity];

        ords = new int[capacity];

        values = new int[capacity];

        

        Arrays.fill(ords, -1);

        hashSize = capacity;

        halfHashSize = (capacity >>> 1);

        hashMask = capacity - 1;

    }





    @Override

    public void incKey(CharsRef key) {

        int code = charsHashCode(key.chars, key.offset, key.length);

        incKey(key.chars, key.offset, key.length, code, 1);

    }





    @Override

    public void incKey(CharsRef key, int add) {

        int code = charsHashCode(key.chars, key.offset, key.length);

        incKey(key.chars, key.offset, key.length, code, add);

    }





    @Override

    public void incKey(char[] arr, int offset, int length) {

        int code = charsHashCode(arr, offset, length);

        incKey(arr, offset, length, code, 1);

    }

    

    @Override

    public void incKey(char[] arr, int offset, int length, int add) {

        int code = charsHashCode(arr, offset, length);

        incKey(arr, offset, length, code, add);

    }

    

    private void incKey(char[] arr, int offset, int length, int code, int add) {

        int pos = (code & hashMask);

        int e = ords[pos];

        while (e != -1 && !charsEquals(arrs[e], offsets[e], lengths[e], arr, offset, length)) {

            final int inc = ((code >> 8) + code) | 1;

            code += inc;

            pos = (code & hashMask);

            e = ords[pos];

        }

        if (e == -1) {

            // new entry.

            arrs[count] = arr;

            offsets[count] = offset;

            lengths[count] = length;

            values[count] = add;

            ords[pos] = count;

            ++count;

            if (count == halfHashSize) {

                rehash((hashSize << 1));

            }

        } else {

           values[e] += add;

        }

    }

    

    private void rehash(int newSize) {

        char[][] newArrs = new char[newSize][];

        int[] newOffsets = new int[newSize];

        int[] newLengths = new int[newSize];

        int[] newValues = new int[newSize];

        System.arraycopy(arrs, 0, newArrs, 0, halfHashSize);

        System.arraycopy(offsets, 0, newOffsets, 0, halfHashSize);

        System.arraycopy(lengths, 0, newLengths, 0, halfHashSize);

        System.arraycopy(values, 0, newValues, 0, halfHashSize);





        final int[] newOrds = new int[newSize];

        Arrays.fill(newOrds, -1);

        final int newHashMask = newSize - 1;

        for (int i = 0; i < hashSize; ++i) {

            int e0 = ords[i];

            if (e0 != -1) {

                char[] arr = newArrs[e0];

                int offset = newOffsets[e0];

                int length = newLengths[e0];

                int code = charsHashCode(arr, offset, length);

                int pos = code & newHashMask;

                while (newOrds[pos] != -1) {

                    final int inc = ((code >> 8) + code) | 1;

                    code += inc;

                    pos = code & newHashMask;

                }

                newOrds[pos] = e0;

            }

        }

        

        ords = newOrds;

        arrs = newArrs;

        offsets = newOffsets;

        lengths = newLengths;

        values = newValues;

        

        hashSize = newSize;

        halfHashSize = (newSize >> 1);

        hashMask = newHashMask;

    }

    

    public int charsHashCode(char[] chars, int offset, int length) {

        final int prime = 31;

        int result = 0;

        final int end = offset + length;

        for (int i = offset; i < end; i++) {

          result = prime * result + chars[i];

        }

        return result;

    }

    

    public boolean charsEquals(char[] lhsArr, int lhsOffset, int lhsLength, char[] rhsArr, int rhsOffset, int rhsLength) {

        if (lhsLength == rhsLength) {

          int otherUpto = rhsOffset;

          final int end = lhsOffset + lhsLength;

          for (int upto = lhsOffset; upto < end; upto++, otherUpto++) {

            if (lhsArr[upto] != rhsArr[otherUpto]) {

              return false;

            }

          }

          return true;

        } else {

          return false;

        }

    }

    

    @Override

    public int get(CharsRef key) {

        return get(key.chars, key.offset, key.length, 0);

    }

    

    @Override

    public int get(CharsRef key, int no_entry_key) {

        return get(key.chars, key.offset, key.length, no_entry_key);

    }

    

    @Override

    public int get(char[] arr, int offset, int length) {

        return get(arr, offset, length, 0);

    }

    

    @Override

    public int get(char[] arr, int offset, int length, int no_entry_key) {

        int code = charsHashCode(arr, offset, length);

        int pos = (code & hashMask);

        int e = ords[pos];

        while (e != -1 && !charsEquals(arrs[e], offsets[e], lengths[e], arr, offset, length)) {

            final int inc = ((code >> 8) + code) | 1;

            code += inc;

            pos = (code & hashMask);

            e = ords[pos];

        }

        return e == -1 ? no_entry_key : values[e];

    }

    

    @Override

    public void forEach(CharsRefIntEntryAccessor accessor) {

        for (int i = 0; i < hashSize; ++i) {

            int pos = ords[i];

            if (pos != -1) {

                accessor.access(arrs[pos], offsets[pos], lengths[pos], values[pos]);

            }

        }

    }





    @Override

    public int size() {

        return count;

    }

    

    // for test only.

    public int hashSize() {

        return hashSize;

    }

}

package com.dp.arts.lucenex.utils;

import java.util.HashMap;

import java.util.Random;

import
org.apache.lucene.util.CharsRef;

public class CharsRefIntHashMapBenchmark

{

private static Random
randGen = null;

private
static char[]
numbersAndLetters =
null;

static {

randGen =
new Random();

numbersAndLetters = ("0123456789abcdefghijklmnopqrstuvwxyz" +

"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ").toCharArray();

}

private static
final String randomString(int length) {

if (length < 1) {

return
null;

}

char [] randBuffer =
new char[length];

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

randBuffer[i] = numbersAndLetters[randGen.nextInt(71)];

}

return new String(randBuffer);

}

public static
void main(String[] args) {

final int MAX = 100000;

String[] strs = new String[10000];

int[] values =
new int[MAX];

for (int i = 0; i < 10000; ++i) {

strs[i] = randomString(randGen.nextInt(10) + 1);

}

for (int i = 0; i < MAX; ++i) {

values[i] = randGen.nextInt(10000);

}

char[][] arrs =
new char[MAX][];

int offsets[] =
new int[MAX];

int counts[] =
new int[MAX];

for (int i = 0; i < MAX; ++i) {

String s = strs[values[i]];

arrs[i] = StringMisc.toCharArray(s);

offsets[i] = StringMisc.getOffset(s);

counts[i] = StringMisc.getCount(s);

}

long start = System.currentTimeMillis();

CharsRefIntHashMap map = new CharsRefIntHashMap();

for (int j = 0; j < 100; ++j) {

for (int i = 0; i < MAX; ++i) {

map.incKey(arrs[i], offsets[i], counts[i]);

}}

System.err.println("CharsRefIntHashMap time elapsed: " + (System.currentTimeMillis() - start) +
"ms.");

start = System.currentTimeMillis();

HashMap<String, Integer> oldMap = new HashMap<String, Integer>();

for (int j = 0; j < 100; ++j) {

for (int i = 0; i < MAX; ++i) {

String s = strs[values[i]];

Integer v = oldMap.get(s);

if (v ==
null) {

v = new Integer(1);

oldMap.put(s, v);

} else {

v += 1;

}

}}

System.err.println("Origin string map time elapsed: " + (System.currentTimeMillis() - start) +
"ms.");

}

}


因此这样写优点不过内存少用一些,性能应该更差,rehash时须要拷贝很多其它数据,对每一个数据的訪问都须要下标。实际情况下,CharsRef所须要的内存是24字节。假设使用trove的TObjectIntHashMap,插入速度相当,查询速度是jdk hashmap的三倍。

CharsRefIntHashMap并不比HashMap&lt;String, Integer&gt;快的更多相关文章

  1. string integer == equals 转

    java中的数据类型,可分为两类: 1.基本数据类型,也称原始数据类型.byte,short,char,int,long,float,double,boolean   他们之间的比较,应用双等号(== ...

  2. String,Integer,int类型之间的相互转换

    String, Integer, int 三种类型之间可以两两进行转换 1. 基本数据类型到包装数据类型的转换 int -> Integer (两种方法) Integer it1 = new I ...

  3. Junit + String/Integer/ArrayList/HashMap/TreeMap 基本使用Demo

    package JavaTest.test; import java.util.ArrayList; import java.util.HashMap; import java.util.List; ...

  4. List<Map<String, Integer>> 同key的value全部累加合并

    public static void main(String[] args){ List<Map<String,Object>> list1 = new ArrayList&l ...

  5. Delphi out 参数 string Integer

    http://www.delphibasics.co.uk/RTL.asp?Name=Out http://stackoverflow.com/questions/14507310/whats-the ...

  6. string(Integer)类的equals和==区别和联系(验证密码的时候用得到)

    “==”在八种原始数据类型中,判断的是两边的值是否相等.对于对象类型来说,判断的是内存地址,所以为true所满足的条件就是两边的引用指向同一个对象. 比如String s1 = "abcde ...

  7. java方法笔记: split,instanceof,StringBuilder(),append(),string ,Integer,Math,正则表达式

    http://swiftlet.net/archives/709 如果分隔符在前方,会显示“”,在尾部不显示: *|做分割,需要加\\ API文档如下 1.instanceof 查看前者是否是后者的实 ...

  8. Java String Integer转换 练习:编程求字符串“100”和“150”按十进制数值做差后的结果以字符串形式输出。

    package com.swift; public class String_To_Integer_Test { public static void main(String[] args) { /* ...

  9. Map<String,Integer>acount字符串出现的次数

随机推荐

  1. css3 文本模型

    我前期是一名前端开发者,经常会遇到关于文本模型的问题,很多地方我们会经常遇到这种问题.例如栏目的标题,在设计师给我们图的时候并不会考虑到标题的长度,所以我们自己开发的过程中自己注意这一点. 首先和大家 ...

  2. 从flink-example分析flink组件(1)WordCount batch实战及源码分析

    上一章<windows下flink示例程序的执行> 简单介绍了一下flink在windows下如何通过flink-webui运行已经打包完成的示例程序(jar),那么我们为什么要使用fli ...

  3. mvp 不错的链接

    http://www.imooc.com/wenda/detail/216700 http://www.cnblogs.com/mybkn/archive/2012/04/12/2443676.htm ...

  4. pdf 转成 一张图片

    1.maven依赖 <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfb ...

  5. 【java基础】(6)内部类

    内部类不是很好理解,但说白了其实也就是一个类中还包含着另外一个类 如同一个人是由大脑.肢体.器官等身体结果组成,而内部类相当于其中的某个器官之一,例如心脏:它也有自己的属性和行为(血液.跳动) 显然, ...

  6. bootstrap-paginator基于bootstrap的分页插件

    bootstrap-paginator基于bootstrap的分页插件 GitHub 官网地址:https://github.com/lyonlai/bootstrap-paginator 步骤 引包 ...

  7. 20小时掌握网站开发(免费精品htmlcss视频教程)

    自己最近研发了一套新的htmlcss教程,并进行了授课实施,视频教程百度云下载链接如下: 视频及案例源码下载地址 本套教程视频需要安装屏幕录像专家软件才能观看,屏幕录像专家下载地址如下: 屏幕录像专家 ...

  8. 【Linux】七种运行级别

    运行级别:即系统的运行模式. 级别类型: 0:关机状态. 1:单用户模式. 2:字符界面的多用户模式(不支持网络). 3:字符界面的多用户模式(运行最完整的模式). 4:未分配使用,系统保留. 5:图 ...

  9. SQL Server之十大存储过程

    下面介绍十大不同类型存储过程. 用户自定义存储过程 . 创建语法 create proc | procedure pro_name [{@参数数据类型} [=默认值] [output], {@参数数据 ...

  10. mysql 统计按天、星期、按月数据的各种 sql 语句 (转录)

    文章主要是作为知识整理,内容略有修改,方便以后查阅,内容转摘至 陈宇衡的个人博客,欢迎前去围观. 作为演示效果,先创建一个测试表,在插入两条数据(注:时间为 datetime 类型,unix 时间戳需 ...