程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 前綴判斷

前綴判斷

編輯:C++入門知識


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

    比如:"abcd1234" 就包含了 "abc" 為前綴


[cpp]
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; 

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;
}參考答案:*haystack++!=*needle++;

 

請分析代碼邏輯,並推測劃線處的代碼,通過網頁提交。

注意:僅把缺少的代碼作為答案,千萬不要填寫多余的代碼、符號或說明文字!!

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved