<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    莊周夢蝶

    生活、程序、未來
       :: 首頁 ::  ::  :: 聚合  :: 管理

    模仿st_table寫的StTable類

    Posted on 2007-09-18 19:28 dennis 閱讀(1355) 評論(0)  編輯  收藏 所屬分類: 數據結構與算法my open-source
        update1:添加了remove,removeAll()方法以及getSize()方法
        update2:添加了keySet()方法用于迭代  
        update3:經過測試,StTable類在存儲Integer類型key時,put的速度比HashMap快了接近3倍,而remove、get卻比HashMap慢;而在存儲String類型的key時,put比Hashmap慢,但是get、remove卻快不少。

        讀ruby hacking guide,其中專門辟了一個章節介紹了st.c中的st_table,這個數據結構也就是類似java中的HashMap,基本原理是利用數組存儲,數組的每一個元素是一個單向鏈表,鏈表中再存儲具體的元素,如下圖所示的結構

       ruby中利用這個結構來存儲對象變量、類方法、常量、全局變量等信息,因為在c ruby中,方法、變量都是用一個整型作為鍵值來存儲在st_table中,因此這個數據結構對于以整性為鍵值的map類型來說速度非常不錯(我沒有測試內存的占用情況)。
    源碼如下:
    //接口,用于定義hash函數
    //HashFunction.java
    public interface HashFunction<T> {
       
    public int hash(T key);
    }

    鏈表元素類:
    public class StTableEntry<T, V> {
        
    protected int hash; //hash值

        
    protected T key;   //

        
    protected V value; //存儲值

        
    protected StTableEntry<T, V> next; //下一節點

        
    public StTableEntry() {

        }

        
    public StTableEntry(int hash, T key, V value, StTableEntry<T, V> next) {
            
    super();
            
    this.hash = hash;
            
    this.key = key;
            
    this.value = value;
            
    this.next = next;
        }

        
    public int getHash() {
            
    return hash;
        }

        
    public void setHash(int hash) {
            
    this.hash = hash;
        }

        
    public T getKey() {
            
    return key;
        }

        
    public void setKey(T key) {
            
    this.key = key;
        }

        
    public StTableEntry<T, V> getNext() {
            
    return next;
        }

        
    public void setNext(StTableEntry<T, V> next) {
            
    this.next = next;
        }

        
    public V getValue() {
            
    return value;
        }

        
    public void setValue(V value) {
            
    this.value = value;
        }

    }

    完整的StTable實現,沒有實現remove,(update:添加了remove,removeAll()方法以及getSize()方法):
    public final class StTable<T, V> {
        
    private HashFunction<T> hashFunction;

        
    private int num_bins;

        
    int num_entries;

        StTableEntry
    <T, V>[] bins;

        
    public static int DEFAULT_SIZE = 11;

        
    private static int DEFAULT_MAX_DENSITY = 5;

        
    private static int DEFAULT_MIN_SIZE = 8;

        
    private static long primes[] = { 8 + 316 + 332 + 564 + 3128 + 3,
                
    256 + 27512 + 91024 + 92048 + 54096 + 38192 + 27,
                
    16384 + 4332768 + 365536 + 45131072 + 29262144 + 3,
                
    524288 + 211048576 + 72097152 + 174194304 + 158388608 + 9,
                
    16777216 + 4333554432 + 3567108864 + 15134217728 + 29,
                
    268435456 + 3536870912 + 111073741824 + 850 };

        
    public StTable(HashFunction<T> hashFunction) {
            
    this.hashFunction = hashFunction;
            
    this.num_bins = DEFAULT_SIZE;
            
    this.num_entries = 0;
            
    this.bins = new StTableEntry[this.num_bins];
        }

        
    public StTable(HashFunction<T> hashFunction, int size) {
            
    this.hashFunction = hashFunction;
            
    if (size == 0)
                
    throw new IllegalArgumentException(
                        
    "The size could not less than zero:" + size);
            
    this.num_bins = size;
            
    this.num_entries = 0;
            
    this.bins = new StTableEntry[this.num_bins];
        }

        
    private long newSize(int size) {

            
    for (int i = 0, newsize = DEFAULT_MIN_SIZE; i < primes.length; i++, newsize <<= 1) {
                
    if (newsize > size)
                    
    return primes[i];
            }
            
    /* Ran out of polynomials */
            
    return -1/* should raise exception */
        }

        
    public V get(T key) {
            
    int hash_val = doHash(key);
            StTableEntry
    <T, V> entry = findEntry(hash_val, key);
            
    if (entry == null)
                
    return null;
            
    else
                
    return entry.getValue();
        }

        
    public V put(T key, V value) {
            
    int hash_val = doHash(key);
            StTableEntry
    <T, V> entry = findEntry(hash_val, key);
            
    if (entry == null) {
                
    // 未有鍵值,直接添加
                addDirect(key, value);
                
    return value;
            } 
    else {
                V v 
    = entry.value;
                entry.value 
    = value;
                
    return v;
            }
        }

        
    public V remove(T key) {
            
    int hash_val = doHash(key);
            
    int bin_pos = hash_val % this.num_bins;
            StTableEntry
    <T, V> entry = this.bins[bin_pos];
            
    // 記錄前一節點,考慮修改采用雙向鏈表也可
            StTableEntry<T, V> prev = null;
            
    if (entryNotEqual(entry, key, hash_val)) {
                prev 
    = entry;
                entry 
    = entry.next;
                
    while (entryNotEqual(entry, key, hash_val)) {
                    prev 
    = entry;
                    entry 
    = entry.next;
                }
            }
            
    if (entry == null)
                
    return null;
            
    else {
                
    if (prev != null)
                    prev.next 
    = entry.next; // 前一節點的next連接到下一節點
                else
                    
    this.bins[bin_pos] = entry.next; // entry恰好是第一個節點,將數組元素設置為next
                V v = entry.value;
               
    entry = null// gc友好
                return v;
            }
           
    this.num_entries=0;
        }

        
    public void removeAll() {
            
    for (int i = 0; i < this.bins.length; i++) {
                StTableEntry
    <T, V> entry = this.bins[i];
                
    this.bins[i] = null;
                StTableEntry
    <T, V> temp = entry;
                
    if (entry == null)
                    
    continue;
                
    while (entry != null) {
                    entry 
    = null;
                    
    this.num_entries--;
                    entry 
    = temp.next;
                    temp 
    = entry;
                }
                temp 
    = null;
                entry 
    = null;
            }
        }

        
    public int getSize() {
            
    return this.num_entries;
        }
       
       
    public Set<T> keySet() {
            Set<T> keys = new HashSet<T>(this.num_entries);
            for (int i = 0; i < this.bins.length; i++) {
                StTableEntry<T, V> entry = this.bins[i];
                if (entry == null)
                    continue;
                while (entry != null) {
                    keys.add(entry.key);
                    entry = entry.next;
                }

            }
            return keys;
        }
        
    // hash函數,調用hashFunction的hash方法
        private int doHash(T key) {
            
    if (hashFunction.hash(key) < 0)
                
    throw new IllegalArgumentException(
                        
    "hash value could not less than zero:"
                                
    + hashFunction.hash(key));
            
    return hashFunction.hash(key);
        }

        
    // 過于擁擠,重新分布
        private void reHash() {
            
    int new_size = (int) newSize(this.num_bins);
            StTableEntry
    <T, V>[] new_bins = (StTableEntry<T, V>[]) new StTableEntry[new_size];
            
    for (int i = 0; i < this.num_bins; i++) {
                StTableEntry
    <T, V> entry = this.bins[i];
                
    while (entry != null) {
                    StTableEntry
    <T, V> next = entry.next;
                    
    int hash_val = entry.hash % new_size;
                    entry.next 
    = new_bins[hash_val];
                    new_bins[hash_val] 
    = entry;
                    entry 
    = next;
                }
            }
            
    this.bins = null;// gc友好
            this.num_bins = new_size;
            
    this.bins = new_bins;

        }

        
    private void addDirect(T key, V value) {
            
    int hash_val = doHash(key);
            
    int bin_pos = hash_val % this.num_bins;
            
    if ((this.num_entries / this.num_bins) > DEFAULT_MAX_DENSITY) {
                reHash();
                bin_pos 
    = hash_val % this.num_bins;
            }
            StTableEntry
    <T, V> entry = new StTableEntry<T, V>();
            entry.setHash(hash_val);
            entry.setKey(key);
            entry.setValue(value);
            entry.setNext(
    this.bins[bin_pos]);
            
    this.bins[bin_pos] = entry;
            
    this.num_entries++;
        }

        
    private StTableEntry<T, V> findEntry(int hash_val, T key) {
            
    int bin_pos = hash_val % this.num_bins;
            StTableEntry
    <T, V> entry = this.bins[bin_pos];
            
    if (entryNotEqual(entry, key, hash_val)) {
                entry 
    = entry.next;
                
    while (entryNotEqual(entry, key, hash_val)) {
                    entry 
    = entry.next;
                }
            }
            
    return entry;
        }

        
    // 判斷元素是否相同
        private boolean entryNotEqual(StTableEntry<T, V> entry, T key, int hash_val) {
            
    return entry != null
                    
    && (entry.getHash() != hash_val || (!key.equals(entry.getKey())));
        }

    }

      單元測試類就不列了,給一個與HashMap的簡單性能對比,以整型為鍵,顯然StTable快多了,對于字符串型,關鍵是HashFunction的定義,我直接調用String的hashCode方法,不知道有沒有其他更好的方法讓元素分布的更均勻些:
    import java.util.HashMap;
    import java.util.Map;

    public class Benchmark {
        
    public static void main(String args[]) {
           
    long map_cost = testStringMap();
            
    long table_cost = testStringTable();
            
    if (map_cost <= table_cost)
                System.out.println(
    "map is faster than table ");
            
    else
                System.out.println(
    "table is faster than map ");

            map_cost 
    = testIntegerMap();
            table_cost 
    = testIntegerTable();
            
    if (map_cost <= table_cost)
                System.out.println(
    "map is faster than table ");
            
    else
                System.out.println(
    "table is faster than map ");
        }

        
    public static long testIntegerMap() {
            Map
    <Integer, Integer> map = new HashMap<Integer, Integer>();
            
    long start = System.nanoTime();
            
    for (int i = 0; i < 10000; i++)
                map.put(i, i);
            
    long result = 0;
            
    for (int i = 0; i < 10000; i++)
                result 
    += map.get(i);
            
    long end = System.nanoTime();
            System.out.println(
    "result:" + result);
            System.out.println(
    "map:" + (end - start));
            
    return (end - start);
        }

        
    public static long testIntegerTable() {
            HashFunction
    <Integer> intHash = new HashFunction<Integer>() {
                
    public int hash(Integer key) {
                    
    return key;
                }
            };
            StTable
    <Integer, Integer> table = new StTable<Integer, Integer>(intHash);
            
    long start = System.nanoTime();
            
    for (int i = 0; i < 10000; i++)
                table.put(i, i);
            
    long result = 0;
            
    for (int i = 0; i < 10000; i++)
                result 
    += table.get(i);
            
    long end = System.nanoTime();
            System.out.println(
    "result:" + result);
            System.out.println(
    "table:" + (end - start));
            
    return (end - start);
        }

        
    public static long testStringMap() {
            Map
    <String, String> map = new HashMap<String, String>();
            
    long start = System.nanoTime();
            
    for (int i = 0; i < 10000; i++)
                map.put(String.valueOf(i), String.valueOf(i));
            
    long result = 0;
            
    for (int i = 0; i < 10000; i++)
                result 
    += Integer.parseInt(map.get(String.valueOf(i)));
            
    long end = System.nanoTime();
            System.out.println(
    "result:" + result);
            System.out.println(
    "map:" + (end - start));
            
    return (end - start);
        }

        
    public static long testStringTable() {
            HashFunction
    <String> intHash = new HashFunction<String>() {
                
    int i = 0;
                
    public int hash(String key) {
                    
    int hashCode = key.hashCode();
                    
    return hashCode < 0 ? -hashCode : hashCode;
                }
            };
            StTable
    <String, String> table = new StTable<String, String>(intHash);
            
    long start = System.nanoTime();
            
    for (int i = 0; i < 10000; i++)
                table.put(String.valueOf(i), String.valueOf(i));
            
    long result = 0;
            
    for (int i = 0; i < 10000; i++)
                result 
    += Integer.parseInt(table.get(String.valueOf(i)));
            
    long end = System.nanoTime();
            System.out.println(
    "result:" + result);
            System.out.println(
    "table:" + (end - start));
            
    return (end - start);
        }

    }

    結果為:
    result:49995000
    map:55501468
    result:49995000
    table:60999652
    map is faster than table

     
    result:49995000
    map:44634444
    result:49995000
    table:26209477
    table is faster than map

    將get換成remove方法,結果也與上面的類似。



    主站蜘蛛池模板: 亚洲精品无码专区2| 国产国产人免费视频成69堂| 亚洲桃色AV无码| 男男gay做爽爽的视频免费| 天堂在线免费观看中文版| 久久水蜜桃亚洲AV无码精品 | 七次郎成人免费线路视频| 亚洲精品无码久久不卡| 一级毛片免费不卡直观看| 一本色道久久综合亚洲精品| 国产免费人成视频在线播放播| 亚洲国产精品毛片av不卡在线| 深夜福利在线视频免费| 国产亚洲?V无码?V男人的天堂| eeuss影院www天堂免费| 亚洲国产精品嫩草影院在线观看| 大地资源在线资源免费观看| 亚洲宅男永久在线| 久久WWW免费人成人片| 亚洲av永久无码精品网址| 午夜亚洲av永久无码精品| 99视频在线观看免费| 亚洲午夜免费视频| 在线观看视频免费国语| 污污的视频在线免费观看| 亚洲精品国产精品乱码不99| 人妻丰满熟妇无码区免费| 日韩亚洲人成在线| 亚洲精品第一国产综合境外资源| 丝袜足液精子免费视频| 亚洲伊人久久大香线蕉啊| 免费v片视频在线观看视频| 99久久国产精品免费一区二区| 亚洲毛片无码专区亚洲乱| 日本不卡免费新一二三区| 最近免费字幕中文大全| 亚洲免费在线视频观看| 亚洲精品99久久久久中文字幕 | 在线看片免费人成视频福利| 亚洲综合色丁香婷婷六月图片| 亚洲AV无码成人精品区大在线|