aboutsummaryrefslogtreecommitdiffstats
path: root/src/jaulibs/hashstr.cpp
blob: 5286422df3d801c1bbaa6e32a8edda930feca20b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
// author : Sven Gothel - Stapenhorststrasse 35a - 33615 Bielefeld
//
// hashstr.h
// DATUM                        : 11.09.1994
//
// Jegliches Copyright aller Dateien ist im Besitz der Autoren.
// Sven Gothel * Stapenhorststr.35a * 33615 Bielefeld * 0521/139228
// Bielefeld, den 22.8.1994.
/*
 *
 *  $Log: hashstr.cc $
 *  Revision 1.5  1995/04/07 16:54:47  Sven_Gothel
 *  *** empty log message ***
 *  Revision 1.4  1995/04/04 10:37:22  Sven_Gothel
 *  *** empty log message ***
 *  Revision 1.3  1994/12/31 01:01:49  Sven_Gothel
 *  *** empty log message ***
 *  Revision 1.2  1994/12/15 15:27:53  Sven_Gothel
 *  the very first check in !!!
 *  all files contains the log message now !!!
 *  Sven Gothel, Bielefeld 14.12.1994 !!!
 *  
 *  Revision 1.1  1994/12/15 15:18:36  Sven_Gothel
 *  Initial revision
 *
*/

# include "hashstr.h"

void HashStrClassListe::Copy(const HashStrClassListe &m)
{
   anzahl=m.anzahl;
   Size=m.Size;

   size_type i;
   assert(HashArray==nullptr);
   assert(HEAP_CHECK()>=1);

   if(Size>0)
   {
	 if( ( HashArray=new SortListe<StrClass>*[Size] ) == nullptr )
	 {
		fprintf(stderr, "<HashStrClassListe> ERROR : Es wurde versucht ein HashArray\n");
		fprintf(stderr, "<HashStrClassListe> mit der Groesse %zu zu eroeffnen.\n", (size_t)Size);
		INT_ERR(__LINE__);
	 }
	 if( ( AnzahlElemente=new size_type[Size] ) == nullptr )
	 {
		fprintf(stderr, "<HashStrClassListe> ERROR : Es wurde versucht ein int-Array\n");
		fprintf(stderr, "<HashStrClassListe> fuer internen Gebrauch mit der Groesse %zu zu eroeffnen.\n", (size_t)Size);
		INT_ERR(__LINE__);
	 }

	 // Initialisierung .. Copy
	 for( i=0; i<Size; i++ )
	 {
	   if(m.HashArray[i]!=nullptr)
	   {
		 HashArray[i]=new SortListe<StrClass>(*m.HashArray[i]);
		 if(HashArray[i]==nullptr) INT_ERR(__LINE__);
	   } else HashArray[i]=nullptr;
	   AnzahlElemente[i]=m.AnzahlElemente[i];
	 }
	 assert(HEAP_CHECK()>=1);
   }
}

void HashStrClassListe::Dest()
{
   assert ( ( HashArray && AnzahlElemente ) ||
			( !HashArray && !AnzahlElemente )
		  );
   if( HashArray && AnzahlElemente )
   {
	 for(size_type i=0; i<Size; i++ )
	 {
	   assert(HEAP_CHECK()>=1);
	   if(HashArray[i]!=nullptr)
		 delete HashArray[i];
	 }
	 assert(HEAP_CHECK()>=1);
	 delete[] HashArray;
	 HashArray=nullptr;
	 delete[] AnzahlElemente;
	 AnzahlElemente=nullptr;
	 assert(HEAP_CHECK()>=1);
   }
}

HashStrClassListe::HashStrClassListe( size_type size )
: HashArray(nullptr), AnzahlElemente(nullptr), Size(size), anzahl(0)
{
   assert(HashArray==nullptr);
   assert(HEAP_CHECK()>=1);
   if(size>0)
   {
	 if( ( HashArray= new SortListe<StrClass>*[Size] ) == nullptr )
	 {
		fprintf(stderr, "<HashStrClassListe> ERROR : Es wurde versucht ein HashArray\n");
		fprintf(stderr, "<HashStrClassListe> mit der Groesse %zu zu eroeffnen.\n", (size_t)Size);
		INT_ERR(__LINE__);
	 }
	 assert( HashArray!=nullptr );
	 assert(HEAP_CHECK()>=1);
	 if( ( AnzahlElemente=new size_type[Size] ) == nullptr )
	 {
		fprintf(stderr, "<HashStrClassListe> ERROR : Es wurde versucht ein int-Array\n");
		fprintf(stderr, "<HashStrClassListe> fuer internen Gebrauch mit der Groesse %zu zu eroeffnen.\n", (size_t)Size);
		INT_ERR(__LINE__);
	 }
	 assert(HEAP_CHECK()>=1);
	 // initialisierung
	 for ( size_type i=0; i<Size; i++ )
	 {
	   HashArray[i]=nullptr;
	   AnzahlElemente[i]=0;
	 }
	 assert(HEAP_CHECK()>=1);
   }
}

HashStrClassListe::HashStrClassListe( const HashStrClassListe &m )
: HashArray(nullptr), AnzahlElemente(nullptr), Size(0), anzahl(0)
{ Copy(m); }

HashStrClassListe& HashStrClassListe::operator=(const HashStrClassListe &m)
{
  if (this == &m)
	 return *this;
  Dest();
  Copy(m);
  return *this;
}

StrClass& HashStrClassListe::operator[](size_type i) const
{
   if(Size<=0) INT_ERR(__LINE__);

   size_type HPos, SPos;
   if ( i>=anzahl || HoleHashNSortPosition ( i, HPos, SPos ) <= 0 )
   {
	  fprintf(stderr, "<HashStrClassListe> ERROR : Es wurde versucht auf das Element mit dem Index %zu\n", (size_t)i);
	  fprintf(stderr, "<HashStrClassListe> zuzugreifen. Die HashStrClassListe enthaelt aber nur %zu Elemente.\n", (size_t)anzahl);
	  INT_ERR(__LINE__);
   }
   assert(HEAP_CHECK()>=1);
   assert(HashArray[HPos]!=nullptr);
   return HashArray[HPos]->operator[](SPos);
}

int HashStrClassListe::fuegeEin(const StrClass& a)
{
   if(Size<=0) INT_ERR(__LINE__);

   size_type HPos=abs(HashFunktion(a)%Size);
   assert (HPos<Size);
   assert(HEAP_CHECK()>=1);
   if(HashArray[HPos]==nullptr)
   {
	 // SortListe<StrClass> Erzeugen
	 HashArray[HPos]=new SortListe<StrClass>();
	 if( HashArray[HPos] == nullptr ) INT_ERR(__LINE__);
   }
   size_type SPos=HashArray[HPos]->fuegeEin(a);
   assert(HEAP_CHECK()>=1);
   AktualisiereAnzahlElementePlus(HPos);
   anzahl++;
   return HoleLinearerIndex(HPos, SPos);
}

void HashStrClassListe::loesche(size_type i)
{
   if(Size<=0) INT_ERR(__LINE__);

   size_type HPos, SPos;
   if ( i>=anzahl || HoleHashNSortPosition ( i, HPos, SPos ) <= 0 )
   {
	  fprintf(stderr, "<HashStrClassListe> ERROR : Es wurde versucht das Element mit dem Index %zu zu loesche.\n", (size_t)i);
	  fprintf(stderr, "<HashStrClassListe> Die HashStrClassListe enthaelt aber nur %zu Elemente.\n", (size_t)anzahl);
	  INT_ERR(__LINE__);
   }
   assert(HEAP_CHECK()>=1);
   assert(HashArray[HPos]!=nullptr);
   if(SPos>=HashArray[HPos]->laenge()) INT_ERR(__LINE__);
   HashArray[HPos]->loesche(SPos);
   assert(HEAP_CHECK()>=1);
   AktualisiereAnzahlElementeMinus(HPos);
   anzahl--;
}

int HashStrClassListe::findeElement(const StrClass& x) const
{
   if(Size<=0) INT_ERR(__LINE__);

   size_type HPos=abs(HashFunktion(x)%Size);
   if(HashArray[HPos]!=nullptr)
   {
	 int SPos=HashArray[HPos]->findeElement(x);
	 if(SPos>=0) return HoleLinearerIndex(HPos, SPos);
   }
   return -1;
}

int HashStrClassListe::HoleLinearerIndex(size_type HPos, size_type SPos) const
{
   size_type LinearePos=SPos;
   if(HPos>=1) LinearePos+=AnzahlElemente[HPos-1];
   return LinearePos;
}

void HashStrClassListe::AktualisiereAnzahlElementePlus(size_type HPos)
{
  while(HPos<Size) AnzahlElemente[HPos++]++;
}

void HashStrClassListe::AktualisiereAnzahlElementeMinus(size_type HPos)
{
  while(HPos<Size) AnzahlElemente[HPos++]--;
}


bool HashStrClassListe::HoleHashNSortPosition ( size_type LinearerIndex,
                                                size_type &HPos,
                                                size_type &SortPos
											  ) const
{
   size_type u=0, o=Size-1;
   size_type i=0;
   bool done=false;
   size_type LinearNumber=LinearerIndex+1;

   // Ein Array von [0..Size-1]
   // Untere Grenze Testen ....
   if ( AnzahlElemente[0] >= LinearNumber )
   {
	 o=0;
	 done=true;
   }

   // bisektionieren bis kein Element zwischen den grenzen
   while ( !done && o-u>1)
   {
	 i=(u+o)/2;
	 if ( AnzahlElemente[i] < LinearNumber )
	 {
	   u=i;
	 }
	 else if ( AnzahlElemente[i] >= LinearNumber )
	 {
	   o=i;
	 }
   }

   HPos=o;
   SortPos = LinearerIndex - ( o>0 ? AnzahlElemente[o-1] : 0 ) ;
   return true;
}

/*
  // Hier ist ein Testprogramm fuer die ganz virtuelle Klasse HashStrClassListe !
  // TESTEN !!!!!!

  class HashStr : public HashStrClassListe {
  public:
	HashStr(int S=1) : HashStrClassListe(S) {}
	HashStr(const HashStr &m) : HashStrClassListe(m) {}
	virtual ~HashStr() {}
	virtual int HashFunktion(const StrClass &Str) const;
  };

  int HashStr::HashFunktion(const StrClass &Str) const
  {
	const char * const str=Str.GetStrPtr();
	int last = strlen(str)-1;

	if (last<=2) return(str[0]);
	if (str[last]=='2'){
		return((str[0]<<0)^(str[1]<<5)^(str[2]<<11)^(str[last-2]<<13));
	} else {
		return((str[0]<<0)^(str[1]<<5)^(str[2]<<11)^(str[last]<<13));
	}
  }


  int main (void)
  {
	 int j, i;
	 HashStr oh(111);
	 HashStr ih(oh);
	 char buffer[200];

	 for(i=0; i<20; i++)
	 {
		sprintf(buffer,"%d", i);
		StrClass str(buffer);
		j=ih.fuegeEin(str);
		printf("Habe Eingefuegt : %s, == %s ???\n",
		  str.GetStrPtr(), ih[j].GetStrPtr()
		);
		printf("Eingefuegtes hat den Index %d zurueckgegeben.\n", j);
		printf("Nach der Suche wurde der Index %d angegeben.\n",
		  ih.findeElement(str)
		);
	 }
	 oh=ih; // ACHTUNG DESTRUKTOR AUFRUF => ZEIT !
	 for(i=0;i<20; i++)
	 {
	   printf(" ih[%d]=%s  == oh[%d]=%s \n",
		 i, ih[i].GetStrPtr(), i, oh[i].GetStrPtr()
	   );
	 }
	 for(i=19;i>=0; i--)
	 {
	   printf("Versuche ih[%d] zu loeschen.\n", i);
	   ih.loesche(i);
	   printf("Versuche oh[%d] zu loeschen.\n", i);
	   oh.loesche(i);
	 }

	 // Zeittests ::

	 HashStr hl(111);

	 for(i=0; i<20; i++)
	 {
		sprintf(buffer,"%d", i);
		StrClass str(buffer);
		j=hl.fuegeEin(str);
		if(j!=hl.findeElement(str)) INT_ERR(__LINE__);
	 }

	 SortListe<StrClass> sl;

	 for(i=0; i<20; i++)
	 {
		sprintf(buffer,"%d", i);
		StrClass str(buffer);
		j=sl.fuegeEin(str);
		if(j!=sl.findeElement(str)) INT_ERR(__LINE__);
	 }


	 printf("Test erfolgreich ueberstanden....\n\n");
	 return 1;
  }
*/