藍橋杯-前綴判斷(2013-A-5)

標題:前綴判斷

如下的代碼判斷 needle_start指向的串是否爲haystack_start指向的串的前綴,如不是,則返回NULL。

比如:“abcd1234” 就包含了 “abc” 爲前綴

char* prefix(char* haystack_start, char* needle_start)
 {
 char* haystack = haystack_start;
 char* needle = needle_start;
 
 
 while(*haystack && *needle){
 if(______________________________) return NULL;  //填空位置
 }
 
 if(*needle) return NULL;
 
 return haystack_start;
 }

請分析代碼邏輯,並推測劃線處的代碼,通過網頁提交。
注意:僅把缺少的代碼作爲答案,千萬不要填寫多餘的代碼、符號或說明文字!!

#include <iostream>

using namespace std;

/**
 *
 * @param haystack_start 母串
 * @param needle_start 前綴
 * @return
 */
char *prefix(char *haystack_start, char *needle_start) {
    char *haystack = haystack_start;
    char *needle = needle_start;//前綴


    while (*haystack && *needle) {//兩個指針都沒有越界
//        if(______________________________) return NULL;  //填空位置
//移動指針
//並判斷
        if (*(haystack++) != *(needle++))return NULL;
    }

    if (*needle) return NULL;

    return haystack_start;
}

int main(int argc, const char *argv[]) {
    cout << prefix("abcd123", "abd") << endl;
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章