問題 c: 字串的查詢刪除
時間限制: 1 sec 記憶體限制: 32 mb
題目描述
給定乙個短字串(不含空格),再給定若干字串,在這些字串中刪除所含有的短字串。
輸入輸入只有1組資料。
輸入乙個短字串(不含空格),再輸入若干字串直到檔案結束為止。
輸出刪除輸入的短字串(不區分大小寫)並去掉空格,輸出。
樣例輸入
in#include
int main()
樣例輸出
#clude
tma()
提示注:將字串中的in、in、in、in刪除。
經驗總結
用函式,可以簡化思考的過程, 匹配並且刪除的思路可以好好地總結。
ac**
#include
#include
#include
const
int maxn =
400;
bool
judge
(char a,
char b)
void
deletespace
(char a)
;int len =0;
for(
int i =
0; a[i]
!='\0'
; i++
)for
(int i =
0; i <
strlen
(a); i++
) a[i]
= temp[i];}
void
searchanddelete
(char a,
char b)
}}if(flag ==1)
}}intmain()
return0;
}
codeup 1808 字串的查詢與刪除
給定乙個短字串 不含空格 再給定若干字串,在這些字串中刪除所含有的短字串。輸入只有1組資料。輸入乙個短字串 不含空格 再輸入若干字串直到檔案結束為止。刪除輸入的短字串 不區分大小寫 並去掉空格,輸出。in include int main clude tma 注 將字串中的in in in in刪除...
ORACLE in 字串,字串,字串
因為傳進來的引數是 字串,字串,字串,要實現in 字串,字串,字串 select from htl price p where p.hotel id 30073328 and p.able sale date between to date 2009 03 27 yyyy mm dd and to ...
字串,字串陣列,字串指標!!
字串 字元陣列實際上是一系列字元的集合,也就是 字串 string 字串陣列 在c語言中,沒有專門的字串變數,沒有string型別,通常就用乙個字元陣列來存放乙個字串。c語言規定,可以將字串直接賦值給字元陣列 在c語言中,字串總是以 0 作為串的結束符。上面的兩個字串,編譯器已經在末尾自動新增了 0...