M_Cyjb_Collections_ReadOnlyPrefixTree_1_TryMatchShortest - CYJB/Cyjb GitHub Wiki
匹配最短的前缀。
Namespace: Cyjb.Collections
Assembly: Cyjb (in Cyjb.dll) Version: 1.0.23+7750dd8e971297c5fa962a3bee37fb78f72793f6
C#
public bool TryMatchShortest(
ReadOnlySpan<char> text,
out KeyValuePair<string, TValue> pair
)
- text
- Type: System.ReadOnlySpan(Char)
要匹配的文本。 - pair
- Type: System.Collections.Generic.KeyValuePair(String, TValue)
如果找到了需要的匹配,则返回相应的键值对; 否则返回 pair 参数的类型的默认值。
Type: Boolean
如果当前前缀树找到了最短的匹配,则为 true
;否则为 false
。