Il sito funziona meglio con JavaScript.
Home
Esplora
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Fixes bad has implementation
main
Eric Amodio
4 anni fa
parent
0dec7ff9b0
commit
cfca480725
1 ha cambiato i file
con
2 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-1
src/system/searchTree.ts
+ 2
- 1
src/system/searchTree.ts
Vedi File
@ -200,7 +200,8 @@ export class TernarySearchTree
{
}
has
(
key
:
K
)
:
boolean
{
return
Boolean
(
this
.
_getNode
(
key
)
)
;
const
node
=
this
.
_getNode
(
key
)
;
return
!
(
node
?
.
value
===
undefined
&&
node
?
.
mid
===
undefined
)
;
}
delete
(
key
:
K
)
:
void
{
Scrivi
Anteprima
Caricamento…
Annulla
Salva