2018 2 13 C 搜尋演算法

2022-01-12 10:37:05 字數 713 閱讀 5813

title

author

date

createtime

categories

c# 搜尋演算法

lindexi

2018-2-13 17:23:3 +0800

2018-2-13 17:23:3 +0800

c#本文主要講c#搜尋演算法。

這演算法是乙個模糊的演算法,用在使用者在找乙個他不確定的文字。

判斷文字和匹配的字元是否有相同順序,如果有,那麼就是匹配。

假如我們有資料「abc」,匹配「abc」,那麼,兩個完全相對的字串是匹配。

資料「aaacbc」,匹配「abc」,也是匹配,因為資料按照「abc」的順序,演算法不管資料有多長,只要資料存在和匹配相同的順序,那麼就匹配。

///

>

/// ///

summary

>

///name

="text"

>資料param

>

///name

="str"

>匹配param

>

public

static

bool

bdt(string

text, string

str)}}

return

reu;

}

現在演算法用在

2018 2 13 C 動態載入解除安裝 DLL

title author date createtime categories c 動態載入解除安裝 dll lindexi 2018 2 13 17 23 3 0800 2018 2 13 17 23 3 0800 c 我最近做的軟體,需要檢測dll或exe是否混淆,需要反射獲得類名,這時發現,c...

2018 2 13 C 獲得裝置usb資訊

title author date createtime categories c 獲得裝置usb資訊 lindexi 2018 2 13 17 23 3 0800 2018 2 13 17 23 3 0800 c 需要在專案右擊引用,點選程式集,搜尋 system.management 然後安裝他...

2018 2 13 C 動態載入解除安裝 DLL

title author date createtime categories c 動態載入解除安裝 dll lindexi 2018 2 13 17 23 3 0800 2018 2 13 17 23 3 0800 c 我最近做的軟體,需要檢測dll或exe是否混淆,需要反射獲得類名,這時發現,c...