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