All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmol.util.Int2IntHash Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
/* $RCSfile$
 * $Author: hansonr $
 * $Date: 2014-08-25 08:16:06 -0500 (Mon, 25 Aug 2014) $
 * $Revision: 19961 $
 *
 * Copyright (C) 2005  Miguel, Jmol Development, www.jmol.org
 *
 * Contact: [email protected]
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 */

package org.jmol.util;

public class Int2IntHash {
  int entryCount;
  Int2IntHashEntry[] entries;
  
  public Int2IntHash(int initialCapacity) {
    entries = new Int2IntHashEntry[initialCapacity];
  }

  public synchronized int get(int key) {
    Int2IntHashEntry[] entries = this.entries;
    int hash = (key & 0x7FFFFFFF) % entries.length;
    for (Int2IntHashEntry e = entries[hash]; e != null; e = e.next)
      if (e.key == key)
        return e.value;
    return Integer.MIN_VALUE;
  }

  public synchronized void put(int key, int value) {
    Int2IntHashEntry[] entries = this.entries;
    int n = entries.length;
    int hash = (key & 0x7FFFFFFF) % n;
    for (Int2IntHashEntry e = entries[hash]; e != null; e = e.next)
      if (e.key == key) {
        e.value = value;
        return;
      }
    if (entryCount > n) {
      int oldSize = n;
      n += n + 1;
      Int2IntHashEntry[] newEntries = new Int2IntHashEntry[n];
      for (int i = oldSize; --i >= 0;) {
        for (Int2IntHashEntry e = entries[i]; e != null;) {
          Int2IntHashEntry t = e;
          e = e.next;
          hash = (t.key & 0x7FFFFFFF) % n;
          t.next = newEntries[hash];
          newEntries[hash] = t;
        }
      }
      entries = this.entries = newEntries;
      hash = (key & 0x7FFFFFFF) % n;
    }
    entries[hash] = new Int2IntHashEntry(key, value, entries[hash]);
    ++entryCount;
  }
}

class Int2IntHashEntry {
  int key;
  int value;
  Int2IntHashEntry next;
  
  Int2IntHashEntry(int key, int value, Int2IntHashEntry next) {
    this.key = key;
    this.value = value;
    this.next = next;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy