日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
KMP算法的應(yīng)用(二十七)-創(chuàng)新互聯(lián)

       我們?cè)谏瞎?jié)博客中講到了 KMP 算法的具體實(shí)現(xiàn),那么我們本節(jié)就來看看 KMP 算法的應(yīng)用。問題:如何在目標(biāo)字符串中查找是否存在指定的子串?

創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的石嘴山網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

       我們來看看字符串類中的新功能,如下圖所示

KMP 算法的應(yīng)用(二十七)

     1、子串查找(KMP  算法的直接應(yīng)用)

           int indexOf(const char* s) const;

            int indexOf(const String& s) const;

       我們來看看具體源碼的實(shí)現(xiàn),如下

int String::indexOf(const char* s) const
{
    return kmp(m_str, s ? s : "");
}

int String::indexOf(const String& s) const
{
    return kmp(m_str, s.m_str);
}

       直接利用我們上節(jié)博客實(shí)現(xiàn)的 kmp 函數(shù)就能實(shí)現(xiàn) indexOf 函數(shù),我們來看看效果

#include 
#include 
#include "DTString.h"

using namespace std;
using namespace DTLib;

int main()
{
    String s = "ababax";

    cout << s.indexOf("bax") << endl;

    return 0;
}

       編譯運(yùn)行結(jié)果如下

KMP 算法的應(yīng)用(二十七)

       我們看到返回的位置為下標(biāo)為 3 處,也就是 s[3] 處。

       2、在字符串中將指定的子串刪除

           String& remove(int i, int len);

            String& remove(const char* s);

            String& remove(const String& s);

       根據(jù) KMP 在目標(biāo)字符串中查找子串的位置,再通過子串位置和子串長(zhǎng)度進(jìn)行刪除。具體源碼實(shí)現(xiàn)如下

String& String::remove(int i, int len)
{
    if( (0 <= i) && (i < m_length) )
    {
        int n = i;
        int m = i + len;

        while( (n < m) && (m < m_length) )
        {
            m_str[n++] = m_str[m++];
        }

        m_str[n] = '\0';
        m_length = n;
    }

    return *this;
}

String& String::remove(const char* s)
{
    return remove(indexOf(s), s ? strlen(s) : 0);
}

String& String::remove(const String& s)
{
    return remove(indexOf(s), s.length());
}

       我們來寫個(gè)測(cè)試代碼進(jìn)行測(cè)試,如下

#include 
#include 
#include "DTString.h"

using namespace std;
using namespace DTLib;

int main()
{
    String s = "ababax";

    cout << s.remove("bab").str() << endl;

    return 0;
}

       我們來看看結(jié)果是不是 aax,如下

KMP 算法的應(yīng)用(二十七)

       3、字符串的減法操作定義(operator -)

       使用 remove 實(shí)現(xiàn)字符串間的減法操作,必須得保證字符串自身不被修改,返回產(chǎn)生的新串。最后效果如下

KMP 算法的應(yīng)用(二十七)

           String operator - (const String& s) const;

            String operator - (const char* s) const;

            String& operator -= (const String& s);

            String& operator -= (const char* s);

       利用原有的 + 操作符進(jìn)行改裝即可,源碼實(shí)現(xiàn)如下

String String::operator - (const String& s) const
{
    return String(*this).remove(s);
}

String String::operator - (const char* s) const
{
    return String(*this).remove(s);
}

String& String::operator -= (const String& s)
{
    return remove(s);
}

String& String::operator -= (const char* s)
{
    return remove(s);
}

       我們來測(cè)試下,測(cè)試代碼如下

#include 
#include 
#include "DTString.h"

using namespace std;
using namespace DTLib;

int main()
{
    String s = "ababax";

    String s1 = s - "bax";

    cout << s.str() << endl;
    cout << s1.str() << endl;

    s -= s;

    cout << "[" << s.str() << "]" << endl;

    return 0;
}

       我們來看看運(yùn)行結(jié)果,s1 = "aba", 最后的 s 應(yīng)該為空,我們來看看結(jié)果

KMP 算法的應(yīng)用(二十七)

       我們看到結(jié)果正如我們所分析的那樣。

       4、字符串中的子串替換

            String& replace(const char* t, const char* s);

            String& replace(const String& t, const char* s);

            String& replace(const char* t, const String& s);

            String& replace(const String& t, const String& s);

       我們來看看具體源碼的實(shí)現(xiàn)

String& String::replace(const char* t, const char* s)
{
    int index = indexOf(t);

    if( index > 0 )
    {
        remove(t);
        insert(index, s);
    }

    return *this;
}

String& String::replace(const String& t, const char* s)
{
    return replace(t.m_str, s);
}

String& String::replace(const char* t, const String& s)
{
    return replace(t, s.m_str);
}

String& String::replace(const String& t, const String& s)
{
    return replace(t.m_str, s.m_str);
}

       我們來寫個(gè)測(cè)試代碼進(jìn)行測(cè)試,代碼如下

#include 
#include 
#include "DTString.h"

using namespace std;
using namespace DTLib;

int main()
{
    String s = "ababax";

    s.replace("baba", "xyz");

    cout << s.str() << endl;

    return 0;
}

       我們來看看最后的結(jié)果是不是 axyzx,運(yùn)行結(jié)果如下

KMP 算法的應(yīng)用(二十七)

       5、從字符串中創(chuàng)建子串

            String sub(int i, int len) const;

        以 i 為起點(diǎn)提取長(zhǎng)度為 len 的子串,子串提取保證不會(huì)改變字符串本身的狀態(tài)。如下

KMP 算法的應(yīng)用(二十七)

       具體源碼實(shí)現(xiàn)如下

String String::sub(int i, int len) const
{
    String ret;

    if( (0 <= i) && (i < m_length) )
    {
        if( len < 0 ) len = 0;
        if( len > m_length ) len = m_length - i;
        char* str = static_cast(malloc(len + 1));

        strncpy(str, m_str + i, len);

        str[len] = '\0';

        ret = str;
    }
    else
    {
        THROW_EXCEPTION(IndexOutOfBoundsException, "Parameter i is invalid ...");
    }

    return ret;
}

       我們來寫個(gè)測(cè)試代碼進(jìn)行測(cè)試,測(cè)試代碼如下

#include 
#include 
#include "DTString.h"

using namespace std;
using namespace DTLib;

int main()
{
    String s = "ababax";
    String s1 = s.sub(3, 10);
    String s2 = s.sub(2, 3);

    cout << s.str() << endl;
    cout << s1.str() << endl;
    cout << s2.str() << endl;

    return 0;
}

       最后的結(jié)果應(yīng)該是 s = "ababax" ; s1 = "bax" ; s3 = "aba" ; 運(yùn)行結(jié)果如下

KMP 算法的應(yīng)用(二十七)

       現(xiàn)在我們的字符串類已經(jīng)實(shí)現(xiàn)的有點(diǎn)規(guī)模了。通過今天對(duì)字符串類的學(xué)習(xí),總結(jié)如下:1、字符串類是工程開發(fā)中必不可少的組件;2、字符串中應(yīng)該包含常用的字符串操作函數(shù),a> 增:insert, operator + , ...; b> 刪:remove,operator -,...; c> 查:indexOf,...; d> 改:replace,... 。


文章名稱:KMP算法的應(yīng)用(二十七)-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://www.dlmjj.cn/article/csheid.html