字串插入 C

2021-08-28 17:28:54 字數 563 閱讀 7157

字串插入

題目內容:

有兩個字串str和substr,str和substr的字元個數不超過10^5,只包含大小寫字母和數字。(字元個數不包括字串結尾處的'\0'。)將substr插入到str中ascii碼最大的那個字元後面,若有多個最大則只考慮第乙個。

輸入格式:

輸入資料只有一行,格式為

str substr

輸出格式:

輸出插入之後的字串。

輸入樣例:

abcab eee
輸出樣例:

abceeeab
#include using namespace std;

int main()

} s.insert(max+1,subs);

cout << s;

return 0;

}

字串插入

coursera上北大 計算概論a 期中試題 描述 有兩個字串 str和 substr str 的字元個數不超過10,substr 的字元個數為3。將 substr插入到 str中 a scii 碼最大的那個字元後面,若有多個最大則只考慮第乙個。輸入 輸入包括若干行,每一行為一組測試資料,格式為 s...

字串迴圈插入

set ansi nulls on set quoted identifier on goalter proc dbo email sendeamil title nvarchar 50 contenttext nvarchar max emailboxid uniqueidentifier,use...

C 字串處理插入 Insert 函式

在論壇上看到乙個需要,需要把字串 20110601 轉為日期。由於使用datetime.parse轉出來是乙個空值。insus.net想到的是使用c 的字串處理函式insert 在指定位置插入兩個 字元即可。view code string s 20110601 s s.insert 4,s s.i...