StringHeap.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: StringHeap.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.misc;
  3. /*
  4.  * StringHeap.java
  5.  *
  6.  * Created: Mon Oct  4 13:28:09 1999
  7.  *
  8.  * Copyright (C) 1999-2000 Sebastian Schaffert
  9.  * 
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version 2
  13.  * of the License, or (at your option) any later version.
  14.  * 
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  * 
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  23.  */
  24. /**
  25.  * This class is a simple heap structure for sorting Strings lexicographically.
  26.  * It is mainly used in WebMail for generating a sorted output of Hashkeys.
  27.  *
  28.  * @author Sebastian Schaffert
  29.  * @version
  30.  */
  31. public class StringHeap  {
  32.     int num_entries;
  33.     String[] keys;
  34.     public StringHeap(int capacity) {
  35. keys=new String[capacity+1];
  36. num_entries=0;
  37.     }
  38.     /**
  39.      * Insert a key/value pair
  40.      * Reorganize Heap afterwards
  41.      */
  42.     public void insert(String key) {
  43. keys[num_entries]=key;
  44. num_entries++;
  45. increase(num_entries);
  46.     }
  47.     /**
  48.      * Return and delete the key with the lowest long value. Reorganize Heap.
  49.      */
  50.     public String next() {
  51. String ret=keys[0];
  52. keys[0]=keys[num_entries-1];
  53. num_entries--;
  54. decrease(1);
  55. return ret;
  56.     }
  57.     public boolean isEmpty() {
  58. return num_entries==0;
  59.     }
  60.     /**
  61.      * Remove an Object from the Heap.
  62.      * Unfortunately not (yet) of very good complexity since we are doing 
  63.      * a simple linear search here.
  64.      * @param key The key to remove from the heap
  65.      */
  66.     public void remove(String key) {
  67. for(int i=0;i<num_entries;i++) {
  68.     if(key.equals(keys[i])) {
  69. num_entries--;
  70. int cur_pos=i+1;
  71. keys[i]=keys[num_entries];
  72. decrease(cur_pos);
  73. break;
  74.     }
  75. }
  76.     }
  77.     /**
  78.      * Lift an element in the heap structure
  79.      * Note that the cur_pos is actually one larger than the position in the array!
  80.      */
  81.     protected void increase(int cur_pos) {
  82. while(cur_pos > 1 && keys[cur_pos-1].compareTo(keys[cur_pos/2-1]) < 0) {
  83.     String tmp1=keys[cur_pos/2-1];keys[cur_pos/2-1]=keys[cur_pos-1];keys[cur_pos-1]=tmp1;
  84.     cur_pos /= 2;
  85. }
  86.     }     
  87.     /**
  88.      * Lower an element in the heap structure
  89.      * Note that the cur_pos is actually one larger than the position in the array!
  90.      */
  91.     protected void decrease(int cur_pos) {
  92. while((cur_pos*2 <= num_entries && keys[cur_pos-1].compareTo(keys[cur_pos*2-1]) > 0) ||
  93.       (cur_pos*2+1 <=num_entries && keys[cur_pos-1].compareTo(keys[cur_pos*2]) > 0)) {
  94.     int lesser_son;
  95.     if(cur_pos*2+1 <= num_entries) {
  96. lesser_son=keys[cur_pos*2-1].compareTo(keys[cur_pos*2])<0?cur_pos*2:cur_pos*2+1;
  97.     } else {
  98. lesser_son=cur_pos*2;
  99.     }
  100.     String tmp1=keys[cur_pos-1];keys[cur_pos-1]=keys[lesser_son-1];keys[lesser_son-1]=tmp1;
  101.     cur_pos=lesser_son;
  102. }
  103.     }     
  104. } // StringHeap