Click or drag to resize
TrieSTValuePut Method
Inserts the key-value pair into the symbol table, overwriting the old value with the new value if the key is already in the symbol table. If the value is null, this effectively deletes the key from the symbol table.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void Put(
	string key,
	Value val
)

Parameters

key
Type: SystemString
the key
val
Type: Value
the value
Exceptions
ExceptionCondition
ArgumentNullExceptionif key is null
See Also