Set.st
author Claus Gittinger <cg@exept.de>
Thu, 30 Jan 1997 14:59:44 +0100
changeset 2328 0fd1d715e5a9
parent 2323 a1fb9151a986
child 2383 8b2957f5ec90
permissions -rw-r--r--
oops - the last one was not good
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1991 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
Collection subclass:#Set
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
    14
	instanceVariableNames:'tally keyArray'
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
    15
	classVariableNames:'DeletedEntry'
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
    16
	poolDictionaries:''
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
    17
	category:'Collections-Unordered'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
2272
9942d9c853c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
    20
Object subclass:#EmptySlot
2259
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    21
	instanceVariableNames:''
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    22
	classVariableNames:''
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    23
	poolDictionaries:''
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    24
	privateIn:Set
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    25
!
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    26
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    27
!Set class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 COPYRIGHT (c) 1991 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
    32
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    33
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    38
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    39
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    40
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    41
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    42
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    43
documentation
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    44
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    45
    a Set is a collection where each element occurs at most once.
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    46
    The inclusion test is done using = for comparison; 
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    47
    see IdentitySet for sets using identity compare.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    48
    Sets use hashing for fast access, this access is considerably faster,
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    49
    if a good hash-number is returned by the elements.
362
claus
parents: 359
diff changeset
    50
claus
parents: 359
diff changeset
    51
    Notice that the default hash (Object>>hash) is not perfect; due to
claus
parents: 359
diff changeset
    52
    the implementation of hash-keys in ST/X, increased hash collisions
claus
parents: 359
diff changeset
    53
    are to be expected for large sets (say: > 20000 element). 
claus
parents: 359
diff changeset
    54
    If your objects are heavyly used in sets or dictionaries, and you need
claus
parents: 359
diff changeset
    55
    big collections, your instances may provide a better hash values.
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    56
345
claus
parents: 324
diff changeset
    57
    Performance hints: 
657
449935f15b9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 635
diff changeset
    58
      If only symbols or smallIntegers are used as keys, 
362
claus
parents: 359
diff changeset
    59
      use an instance of IdentitySet for slightly better performance, 
claus
parents: 359
diff changeset
    60
      since both hashing and comparison is faster.
345
claus
parents: 324
diff changeset
    61
claus
parents: 324
diff changeset
    62
      If you have a rough idea how big the set is going to grow,
claus
parents: 324
diff changeset
    63
      create it using #new: instead of #new. Even if the size given is a
claus
parents: 324
diff changeset
    64
      poor guess (say half of the real size), there is some 20-30% performance
claus
parents: 324
diff changeset
    65
      win to expect, since many resizing operations of the set are avoided.
claus
parents: 324
diff changeset
    66
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    67
    Examples:
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    68
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    69
        |s|
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    70
        s := Set new.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    71
        s add:'hello'.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    72
        s add:'world'.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    73
        s add:#foo.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    74
        s add:1.2345678.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    75
        s add:'hello'.
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    76
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    77
        s printNL.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    78
        's size -> ' print. s size printNL.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    79
        '(s includes:''hello'') -> ' print. (s includes:'hello') printNL.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    80
        '(s includes:#foo)    -> ' print. (s includes:#foo) printNL.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    81
        '(s includes:''foo'')   -> ' print. (s includes:'foo') printNL.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    82
        '(s includes:#bar)    -> ' print. (s includes:#bar) printNL.
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    83
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    84
    [author:]
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    85
        Claus Gittinger
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    86
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    87
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    88
2259
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    89
!Set class methodsFor:'initialization'!
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    90
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    91
initialize
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    92
    "initialize the Set class"
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    93
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    94
    DeletedEntry isNil ifTrue:[
2272
9942d9c853c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
    95
        DeletedEntry := EmptySlot new
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    96
    ].
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    97
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
    98
    "Set initialize"
2259
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
    99
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
   100
    "Modified: 24.1.1997 / 21:09:00 / cg"
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   101
! !
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   102
2259
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
   103
!Set class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   104
a27a279701f8 Initial revision
claus
parents:
diff changeset
   105
new
a27a279701f8 Initial revision
claus
parents:
diff changeset
   106
    "return a new empty Set"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   107
a27a279701f8 Initial revision
claus
parents:
diff changeset
   108
    ^ self new:7
a27a279701f8 Initial revision
claus
parents:
diff changeset
   109
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   110
a27a279701f8 Initial revision
claus
parents:
diff changeset
   111
new:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
   112
    "return a new empty Set with space for anInteger elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   113
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   114
    "
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   115
     make it somewhat bigger; hashing works better if fill grade is
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   116
     below 10% (make it 75% here ..)
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   117
    "
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   118
    ^ self basicNew setTally:(anInteger * 4 // 3)
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   119
! !
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   120
2259
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
   121
!Set class methodsFor:'queries'!
252
   122
   123
goodSizeFrom:arg 
   124
    "return a good array size for the given argument.
   125
     Returns the next prime after arg, since prime sizes are good for hashing."
   126
302
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   127
    |n|
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   128
252
   129
    arg <= 11 ifTrue:[^ 11].
   130
302
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   131
    n := arg * 3 // 2.
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   132
252
   133
    "
   134
     mhmh - this returns good numbers for collections with up-to about
   135
     500k elements; if you have bigger ones, add some more primes here ...
   136
    "
302
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   137
    n <= 524288 ifTrue:[
252
   138
	   "2  4  8  16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144 524288"
302
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   139
	^ #(11 11 11 17 37 67 131 257 521 1031 2053 4099 8209 16411 32771 65537 131101 262147 524309) at:(n highBit)
252
   140
    ].
   141
    "
   142
     make it odd - at least
   143
    "
302
1f76060d58a4 *** empty log message ***
claus
parents: 252
diff changeset
   144
    ^ n bitOr:1
252
   145
! !
   146
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   147
!Set methodsFor:'accessing'!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   148
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   149
at:index
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   150
    "report an error: at: is not allowed for Sets"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   151
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   152
    ^ self errorNotKeyed
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   153
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   154
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   155
at:index put:anObject
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   156
    "report an error: at:put: is not allowed for Sets"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   157
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   158
    ^ self errorNotKeyed
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   159
! !
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   160
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   161
!Set methodsFor:'adding & removing'!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   162
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   163
add:anObject
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   164
    "add the argument, anObject to the receiver.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   165
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   166
     WARNING: do not add elements while iterating over the receiver.
2323
a1fb9151a986 make findKeyOrNil more idiot-proof
Claus Gittinger <cg@exept.de>
parents: 2314
diff changeset
   167
              Iterate over a copy to do this."
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   168
2328
0fd1d715e5a9 oops - the last one was not good
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
   169
    |index "{ Class: SmallInteger }"|
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   170
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   171
    anObject notNil ifTrue:[
2323
a1fb9151a986 make findKeyOrNil more idiot-proof
Claus Gittinger <cg@exept.de>
parents: 2314
diff changeset
   172
        index := self findKeyOrNil:anObject.
2328
0fd1d715e5a9 oops - the last one was not good
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
   173
        (keyArray basicAt:index) isNil ifTrue:[
0fd1d715e5a9 oops - the last one was not good
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
   174
            "/ not already there
2323
a1fb9151a986 make findKeyOrNil more idiot-proof
Claus Gittinger <cg@exept.de>
parents: 2314
diff changeset
   175
            keyArray basicAt:index put:anObject.
a1fb9151a986 make findKeyOrNil more idiot-proof
Claus Gittinger <cg@exept.de>
parents: 2314
diff changeset
   176
            tally := tally + 1.
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   177
2323
a1fb9151a986 make findKeyOrNil more idiot-proof
Claus Gittinger <cg@exept.de>
parents: 2314
diff changeset
   178
            self fullCheck.
a1fb9151a986 make findKeyOrNil more idiot-proof
Claus Gittinger <cg@exept.de>
parents: 2314
diff changeset
   179
        ]
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   180
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   181
    ^ anObject
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   182
2328
0fd1d715e5a9 oops - the last one was not good
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
   183
    "Modified: 30.1.1997 / 14:58:08 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   184
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   185
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   186
remove:oldObject ifAbsent:exceptionBlock
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   187
    "remove oldObject from the collection and return it.
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   188
     If it was not in the collection return the value of exceptionBlock.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   189
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   190
     WARNING: do not remove elements while iterating over the receiver.
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   191
              See #saveRemove: to do this."
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   192
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   193
    |index next|
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   194
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   195
    index := self find:oldObject ifAbsent:0.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   196
    index == 0 ifTrue:[^ exceptionBlock value].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   197
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   198
    keyArray basicAt:index put:nil.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   199
    tally := tally - 1.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   200
    tally == 0 ifTrue:[
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   201
        keyArray := self keyContainerOfSize:(self class goodSizeFrom:0). 
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   202
    ] ifFalse:[
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   203
        index == keyArray basicSize ifTrue:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   204
            next := 1
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   205
        ] ifFalse:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   206
            next := index + 1.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   207
        ].
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   208
        (keyArray basicAt:next) notNil ifTrue:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   209
            keyArray basicAt:index put:DeletedEntry.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   210
        ].
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   211
        self emptyCheck
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   212
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   213
    ^ oldObject
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   214
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   215
    "Modified: 29.1.1997 / 21:34:33 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   216
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   217
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   218
removeAll
1164
38c54a4f1273 commentary
Claus Gittinger <cg@exept.de>
parents: 1144
diff changeset
   219
    "remove all elements from the receiver. Returns the receiver."
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   220
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   221
    self setTally:7.
1164
38c54a4f1273 commentary
Claus Gittinger <cg@exept.de>
parents: 1144
diff changeset
   222
38c54a4f1273 commentary
Claus Gittinger <cg@exept.de>
parents: 1144
diff changeset
   223
    "Modified: 12.4.1996 / 13:35:06 / cg"
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   224
!
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   225
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   226
saveRemove:oldObject 
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   227
    "remove the element, oldObject from the collection.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   228
     Return the element.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   229
     If it was not in the collection return nil.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   230
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   231
     In contrast to #remove:, this does not resize the underlying collection
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   232
     and therefore does NOT rehash & change the elements order.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   233
     Therefor this can be used while enumerating the receiver,
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   234
     which is not possible if #remove: is used.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   235
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   236
     WARNING: since no resizing is done, the physical amount of memory used
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   237
              by the container remains the same, although the logical size shrinks.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   238
              You may want to manually resize the receiver using #emptyCheck.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   239
              (after the loop)"
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   240
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   241
    |index "{ Class:SmallInteger }"
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   242
     next  "{ Class:SmallInteger }"|
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   243
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   244
    oldObject isNil ifTrue:[^ nil].
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   245
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   246
    index := self find:oldObject ifAbsent:0.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   247
    index == 0 ifTrue:[^ nil].
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   248
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   249
    keyArray basicAt:index put:nil.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   250
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   251
    tally := tally - 1.
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   252
    tally ~~ 0 ifTrue:[
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   253
        index == keyArray basicSize ifTrue:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   254
            next := 1
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   255
        ] ifFalse:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   256
            next := index + 1.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   257
        ].
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   258
        (keyArray basicAt:next) notNil ifTrue:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   259
            keyArray basicAt:index put:DeletedEntry
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   260
        ].
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   261
    ].
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   262
    ^ oldObject
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   263
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   264
    "does NOT work:
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   265
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   266
        |s|
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   267
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   268
        s := Set new.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   269
        s add:1.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   270
        s add:2.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   271
        s add:3.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   272
        s add:4.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   273
        s add:5.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   274
        s add:6.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   275
        s add:7.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   276
        s add:8.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   277
        s add:9.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   278
        s do:[:v |
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   279
            v odd ifTrue:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   280
                s remove:v 
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   281
            ]
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   282
        ].
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   283
        s inspect
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   284
    "
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   285
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   286
    "DOES work:
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   287
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   288
        |s|
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   289
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   290
        s := Set new.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   291
        s add:1.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   292
        s add:2.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   293
        s add:3.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   294
        s add:4.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   295
        s add:5.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   296
        s add:6.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   297
        s add:7.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   298
        s add:8.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   299
        s add:9.
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   300
        s do:[:v |
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   301
            v odd ifTrue:[
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   302
                s saveRemove:v 
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   303
            ]
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   304
        ].
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   305
        s inspect
1052
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   306
    "
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   307
7d43187f7e11 added saveRemove: & commentaries
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   308
    "Created: 1.3.1996 / 21:14:26 / cg"
2314
39ba656af0bb comment
Claus Gittinger <cg@exept.de>
parents: 2272
diff changeset
   309
    "Modified: 29.1.1997 / 21:35:55 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   310
! !
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   311
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   312
!Set methodsFor:'binary storage'!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   313
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   314
readBinaryContentsFrom: stream manager: manager
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   315
    "must rehash after reload"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   316
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   317
    super readBinaryContentsFrom: stream manager: manager.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   318
    self rehash
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   319
! !
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   320
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   321
!Set methodsFor:'copying'!
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   322
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   323
postCopy
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   324
    "have to copy the keyArray too"
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   325
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   326
    keyArray := keyArray shallowCopy
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   327
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   328
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   329
!Set methodsFor:'enumerating'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   330
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   331
do:aBlock
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1055
diff changeset
   332
    "perform the block for all members in the collection.
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1055
diff changeset
   333
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1055
diff changeset
   334
     WARNING: do not add/remove elements while iterating over the receiver.
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   335
	      Iterate over a copy to do this."
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   336
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   337
    |sz "{ Class: SmallInteger }"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   338
     element|
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   339
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   340
    sz := keyArray size.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   341
    1 to:sz do:[:index |
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   342
	element := keyArray at:index.
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   343
	(element notNil and:[element ~~ DeletedEntry]) ifTrue:[
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   344
	    aBlock value:element
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   345
	]
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   346
    ]
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1055
diff changeset
   347
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1055
diff changeset
   348
    "Modified: 1.3.1996 / 21:41:13 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   349
! !
61
claus
parents: 50
diff changeset
   350
969
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   351
!Set methodsFor:'inspecting'!
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   352
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   353
inspectorClass
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   354
    "redefined to use SetInspector
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   355
     (instead of the default Inspector)."
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   356
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   357
    ^ SetInspectorView
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   358
! !
6c285e945e8f Use SetInspectorView.
Stefan Vogel <sv@exept.de>
parents: 657
diff changeset
   359
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   360
!Set methodsFor:'private'!
2
claus
parents: 1
diff changeset
   361
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   362
emptyCheck
252
   363
    "check if the receiver has become too empty (after a remove)
324
290cfb34ec93 *** empty log message ***
claus
parents: 302
diff changeset
   364
     and shrink if it makes sense.
290cfb34ec93 *** empty log message ***
claus
parents: 302
diff changeset
   365
     Definition of 'too empty' is 'filled less than 12.5% (i.e. 1/8th)'"
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   366
61
claus
parents: 50
diff changeset
   367
    |sz      "{Class: SmallInteger}"
claus
parents: 50
diff changeset
   368
     newSize "{Class: SmallInteger}" |
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   369
61
claus
parents: 50
diff changeset
   370
    sz := keyArray basicSize.
1643
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   371
    sz > 56 ifTrue:[
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   372
        "
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   373
         shrink if too empty
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   374
        "
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   375
        tally < (sz // 8) ifTrue:[
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   376
            newSize := sz // 7.
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   377
            self grow:newSize
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   378
        ]
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   379
    ]
1643
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   380
577e35f5a046 oops - shrinking of Set could create a fully populated Set,
Claus Gittinger <cg@exept.de>
parents: 1450
diff changeset
   381
    "Modified: 4.9.1996 / 14:39:53 / cg"
41
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   382
!
a14247b04d03 *** empty log message ***
claus
parents: 13
diff changeset
   383
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   384
find:key ifAbsent:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
   385
    "Look for the key in the receiver.  If it is found, return
a27a279701f8 Initial revision
claus
parents:
diff changeset
   386
     the index of the slot containing the key, otherwise
a27a279701f8 Initial revision
claus
parents:
diff changeset
   387
     return the value of evaluating aBlock."
a27a279701f8 Initial revision
claus
parents:
diff changeset
   388
61
claus
parents: 50
diff changeset
   389
    |index  "{ Class:SmallInteger }"
claus
parents: 50
diff changeset
   390
     length "{ Class:SmallInteger }"
claus
parents: 50
diff changeset
   391
     startIndex probe|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   392
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   393
    length := keyArray basicSize.
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   394
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   395
"/
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   396
"/  length < 10 ifTrue:[
362
claus
parents: 359
diff changeset
   397
"/      "assuming, that for small collections the overhead of hashing
claus
parents: 359
diff changeset
   398
"/       is larger ... maybe that proves wrong 
claus
parents: 359
diff changeset
   399
"/       (if overhead of comparing is higher)"
claus
parents: 359
diff changeset
   400
"/      ^ keyArray indexOf:key ifAbsent:aBlock
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   401
"/  ].
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   402
362
claus
parents: 359
diff changeset
   403
    index := key hash.
1975
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   404
    index < 16r1FFFFFFF ifTrue:[
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   405
        index := index * 2
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   406
    ].
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   407
    index := index \\ length + 1.
362
claus
parents: 359
diff changeset
   408
    startIndex := index.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   409
a27a279701f8 Initial revision
claus
parents:
diff changeset
   410
    [true] whileTrue:[
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   411
	probe := (keyArray basicAt:index).
362
claus
parents: 359
diff changeset
   412
	probe isNil ifTrue:[^ aBlock value].
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   413
	key = probe ifTrue:[^ index].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   414
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   415
	index == length ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   416
	    index := 1
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   417
	] ifFalse:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   418
	    index := index + 1
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   419
	].
362
claus
parents: 359
diff changeset
   420
	index == startIndex ifTrue:[^ aBlock value].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   421
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
   422
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   423
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   424
findKeyOrNil:key
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   425
    "Look for the key in the receiver.  
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   426
     If it is found, return return the index of the first unused slot. 
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   427
     Grow the receiver, if key was not found, and no unused slots were present"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   428
61
claus
parents: 50
diff changeset
   429
    |index  "{ Class:SmallInteger }"
claus
parents: 50
diff changeset
   430
     length "{ Class:SmallInteger }"
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   431
     startIndex probe 
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   432
     delIndex "{ Class:SmallInteger }" |
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   433
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   434
    delIndex := 0.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   435
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   436
    length := keyArray basicSize.
362
claus
parents: 359
diff changeset
   437
    index := key hash.
1975
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   438
    index < 16r1FFFFFFF ifTrue:[
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   439
        index := index * 2
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   440
    ].
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   441
    index := index \\ length + 1.
362
claus
parents: 359
diff changeset
   442
    startIndex := index.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   443
a27a279701f8 Initial revision
claus
parents:
diff changeset
   444
    [true] whileTrue:[
1450
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   445
        probe := keyArray basicAt:index.
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   446
        probe isNil ifTrue:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   447
            delIndex == 0 ifTrue:[^ index].
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   448
            keyArray basicAt:delIndex put:nil.
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   449
            ^ delIndex
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   450
        ].
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   451
        key = probe ifTrue:[^ index].
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   452
1450
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   453
        probe == DeletedEntry ifTrue:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   454
            delIndex == 0 ifTrue:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   455
                delIndex := index
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   456
            ]
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   457
        ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   458
1450
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   459
        index == length ifTrue:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   460
            index := 1
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   461
        ] ifFalse:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   462
            index := index + 1
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   463
        ].
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   464
        index == startIndex ifTrue:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   465
            delIndex ~~ 0 ifTrue:[
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   466
                keyArray basicAt:delIndex put:nil.
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   467
                ^ delIndex
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   468
            ].
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   469
            ^ self grow findKeyOrNil:key
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   470
        ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   471
    ]
1450
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   472
18c2a1da8be2 first look for nil-entry in findKeyOrNil: - saves a compare in the good case, when adding new elements
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
   473
    "Modified: 4.6.1996 / 11:15:16 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   474
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   475
a27a279701f8 Initial revision
claus
parents:
diff changeset
   476
findNil:key
a27a279701f8 Initial revision
claus
parents:
diff changeset
   477
    "Look for the next slot usable for key.  This method assumes that
1055
d3784a235a2e commentary
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   478
     key is not already in the receiver and that keyArray does not have
d3784a235a2e commentary
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   479
     previously removed entries.
d3784a235a2e commentary
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   480
     To be used only while growing/rehashing to enter elements into a fresh
d3784a235a2e commentary
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   481
     collection."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   482
1319
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   483
    |startIndex
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   484
     index  "{ Class:SmallInteger }"
61
claus
parents: 50
diff changeset
   485
     length "{ Class:SmallInteger }"|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   486
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   487
    length := keyArray basicSize.
362
claus
parents: 359
diff changeset
   488
    index := key hash.
1975
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   489
    index < 16r1FFFFFFF ifTrue:[
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   490
        index := index * 2
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   491
    ].
c94a8e0b0251 avoid largeIntegers
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
   492
    index := index \\ length + 1.
1319
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   493
    startIndex := index.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   494
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   495
    [(keyArray basicAt:index) notNil] whileTrue:[
1319
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   496
        index == length ifTrue:[
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   497
            index := 1
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   498
        ] ifFalse:[
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   499
            index := index + 1
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   500
        ].
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   501
        index == startIndex ifTrue:[
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   502
            "notice: should not be reached
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   503
             - we must find one since this is only to be 
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   504
               called after growing"
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   505
            ^ 0
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   506
        ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   507
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   508
    ^ index
1055
d3784a235a2e commentary
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   509
1319
296bcdecf9e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   510
    "Modified: 30.4.1996 / 14:15:20 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   511
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   512
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   513
fullCheck
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   514
    "check if collection is full (after an add); grow if so.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   515
     Definition of 'full' is currently: 'filled more than 75% (i.e. 3/4th)'"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   516
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   517
    |sz "{Class: SmallInteger}" |
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   518
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   519
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   520
     grow if filled more than 75% 
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   521
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   522
    sz := keyArray basicSize.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   523
    tally > (sz * 3 // 4) ifTrue:[
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   524
       self grow
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   525
    ]
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   526
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   527
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   528
grow
a27a279701f8 Initial revision
claus
parents:
diff changeset
   529
    "change the number of element slots of the collection to a useful
a27a279701f8 Initial revision
claus
parents:
diff changeset
   530
     new size"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   531
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   532
    self grow:(keyArray basicSize * 2)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   533
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   534
a27a279701f8 Initial revision
claus
parents:
diff changeset
   535
grow:newSize
a27a279701f8 Initial revision
claus
parents:
diff changeset
   536
    "change the number of element slots of the collection - to do this,
a27a279701f8 Initial revision
claus
parents:
diff changeset
   537
     we have to rehash (which is done by re-adding all elements to a new
a27a279701f8 Initial revision
claus
parents:
diff changeset
   538
     empty set)."
a27a279701f8 Initial revision
claus
parents:
diff changeset
   539
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   540
    |elem oldKeyArray newKeyArray deletedEntry
252
   541
     containerSize oldSize "{ Class:SmallInteger }"|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   542
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   543
    oldKeyArray := keyArray.
252
   544
    oldSize := oldKeyArray size.
   545
    containerSize := (self class goodSizeFrom:newSize).
   546
    containerSize == oldSize ifTrue:[^ self].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   547
252
   548
    keyArray := newKeyArray := self keyContainerOfSize:containerSize. 
   549
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   550
    deletedEntry := DeletedEntry.
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   551
    1 to:oldSize do:[:srcIndex |
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   552
	elem := oldKeyArray basicAt:srcIndex.
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   553
	(elem notNil and:[elem ~~ deletedEntry]) ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   554
	    "cannot be already there"
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   555
	    newKeyArray basicAt:(self findNil:elem) put:elem
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   556
	].
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   557
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   558
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   559
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   560
initialIndexFor:hashKey boundedBy:length
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   561
    "for ST-80 compatibility only; it is (currently) not used in this
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   562
     implementation of sets. Therefore, in ST/X it does not make sense
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   563
     to redefine it. (which may be a bad design decision, but slightly
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   564
     improves performance, by avoiding an extra message send ...)"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   565
1972
f9bfcad48b64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   566
    ^ (hashKey * 2 \\ length) + 1.
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   567
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   568
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   569
keyContainerOfSize:n
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   570
    "return a container for keys of size n.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   571
     Extracted to make life of weak subclasses easier ..."
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   572
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   573
    ^ Array basicNew:n
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   574
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   575
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   576
rehash
61
claus
parents: 50
diff changeset
   577
    "rehash is done by re-adding all elements to a new empty set.
claus
parents: 50
diff changeset
   578
     Rehash is needed after a binaryRead, for example."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   579
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   580
    |element oldKeyArray newKeyArray
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   581
     n "{ Class:SmallInteger }"|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   582
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   583
    oldKeyArray := keyArray.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   584
    n := oldKeyArray size.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   585
    keyArray := newKeyArray := self keyContainerOfSize:n.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   586
2
claus
parents: 1
diff changeset
   587
    1 to:n do:[:index |
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   588
	element := oldKeyArray at:index.
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   589
	(element notNil and:[element ~~ DeletedEntry]) ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   590
	    "cannot be already there"
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   591
	    newKeyArray basicAt:(self findNil:element) put:element
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   592
	].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   593
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
   594
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   595
a27a279701f8 Initial revision
claus
parents:
diff changeset
   596
rehashFrom:startIndex
61
claus
parents: 50
diff changeset
   597
    "rehash elements starting at index - after a remove.
claus
parents: 50
diff changeset
   598
     Notice: due to the new implementation of remove, 
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   599
	     this is no longer needed"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   600
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
   601
    |element i "{ Class:SmallInteger }"
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
   602
     length
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   603
     index "{ Class:SmallInteger }" |
a27a279701f8 Initial revision
claus
parents:
diff changeset
   604
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   605
    length := keyArray basicSize.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   606
    index := startIndex.
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   607
    element := keyArray basicAt:index.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   608
    [element notNil] whileTrue:[
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   609
	i := self findNil:element.
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   610
	i == index ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   611
	    ^ self
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   612
	].
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   613
	keyArray basicAt:i put:element.
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   614
	keyArray basicAt:index put:nil.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   615
159
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   616
	index == length ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   617
	    index := 1
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   618
	] ifFalse:[
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   619
	    index := index + 1.
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   620
	].
514c749165c3 *** empty log message ***
claus
parents: 119
diff changeset
   621
	element := keyArray basicAt:index.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   622
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
   623
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   624
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   625
setTally:count
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   626
    "initialize the contents array (for at least count slots) 
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   627
     and set tally to zero.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   628
     The size is increased to the next prime for better hashing behavior."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   629
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   630
    keyArray := self keyContainerOfSize:(self class goodSizeFrom:count). 
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   631
    tally := 0
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   632
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   633
a27a279701f8 Initial revision
claus
parents:
diff changeset
   634
!Set methodsFor:'testing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   635
362
claus
parents: 359
diff changeset
   636
capacity 
claus
parents: 359
diff changeset
   637
    "return the number of elements, that the receiver is
claus
parents: 359
diff changeset
   638
     prepared to take.
claus
parents: 359
diff changeset
   639
     Not used by the system; added for ST-80 compatibility."
claus
parents: 359
diff changeset
   640
claus
parents: 359
diff changeset
   641
    ^ keyArray size
claus
parents: 359
diff changeset
   642
!
claus
parents: 359
diff changeset
   643
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   644
includes:anObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   645
    "return true if the argument anObject is in the receiver"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   646
362
claus
parents: 359
diff changeset
   647
    ^ (self find:anObject ifAbsent:0) ~~ 0
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   648
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   649
a27a279701f8 Initial revision
claus
parents:
diff changeset
   650
isEmpty
a27a279701f8 Initial revision
claus
parents:
diff changeset
   651
    "return true if the receiver is empty"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   652
a27a279701f8 Initial revision
claus
parents:
diff changeset
   653
    ^ tally == 0
a27a279701f8 Initial revision
claus
parents:
diff changeset
   654
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   655
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   656
isFixedSize
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   657
    "return true if the receiver cannot grow - this will vanish once
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   658
     Arrays and Strings learn how to grow ..."
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   659
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   660
    ^ false
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   661
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   662
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   663
occurrencesOf:anObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   664
    "return the number of occurrences of anObject in the receiver"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   665
362
claus
parents: 359
diff changeset
   666
    (self find:anObject ifAbsent:0) == 0 ifTrue:[^ 0].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   667
    ^ 1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   668
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   669
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   670
size
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   671
    "return the number of set elements"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   672
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   673
    ^ tally
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   674
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   675
2259
685b96fb41b6 a better deletedClass
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
   676
!Set class methodsFor:'documentation'!
635
86cbe76f5a20 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   677
86cbe76f5a20 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   678
version
2328
0fd1d715e5a9 oops - the last one was not good
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
   679
    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.46 1997-01-30 13:59:44 cg Exp $'
635
86cbe76f5a20 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   680
! !
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   681
Set initialize!