日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

c语言 内存搜索,怎么在一段内存中搜索一个十六进制串

發(fā)布時(shí)間:2025/4/5 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 c语言 内存搜索,怎么在一段内存中搜索一个十六进制串 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

如何在一段內(nèi)存中搜索一個(gè)十六進(jìn)制串?

比如有長(zhǎng)度為N,首地址為P的內(nèi)存,搜索其中的內(nèi)容是否包含有“001122ff”這樣的串?如何能高效搜索?謝謝

------解決方案--------------------

可以百度一下:KMP算法,BM算法。

參考:

http://www.cnblogs.com/whyandinside/archive/2012/06/03/2532651.html

------解決方案--------------------

http://bbs.csdn.net/topics/390312862

------解決方案--------------------

僅供參考char?*?__cdecl?strnstrn(const?char?*?str1,int?cnt1,const?char?*?str2,int?cnt2,int?offs)?{

char?*cp=(char?*)(str1+offs);

char?*s1,*s2;

int?nn;

if?(offs+cnt2>cnt1)?return(NULL);

while?(1)?{

s1=cp;

s2=(char?*)?str2;

nn=0;

while?(1)?{

if?(fi[nn]==0)?{

if?(*s1-*s2)?break;//

}

if?(ri[nn]==1)?rb[nn]=*s1;

s1++;

s2++;

nn++;

if?(nn>=cnt2)?return(cp);

}

cp++;

if?(cp>=str1+cnt1)?break;//

}

return(NULL);

}

------解決方案--------------------

linux下用memmem,?如果樓主的系統(tǒng)沒(méi)有memmem函數(shù)可以用參考FreeBSD里的這個(gè)實(shí)現(xiàn)

/*-

*?Copyright?(c)?2005?Pascal?Gloor?

*

*?Redistribution?and?use?in?source?and?binary?forms,?with?or?without

*?modification,?are?permitted?provided?that?the?following?conditions

*?are?met:

*?1.?Redistributions?of?source?code?must?retain?the?above?copyright

*????notice,?this?list?of?conditions?and?the?following?disclaimer.

*?2.?Redistributions?in?binary?form?must?reproduce?the?above?copyright

*????notice,?this?list?of?conditions?and?the?following?disclaimer?in?the

*????documentation?and/or?other?materials?provided?with?the?distribution.

*?3.?The?name?of?the?author?may?not?be?used?to?endorse?or?promote

*????products?derived?from?this?software?without?specific?prior?written

*????permission.

*

總結(jié)

以上是生活随笔為你收集整理的c语言 内存搜索,怎么在一段内存中搜索一个十六进制串的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。