給定n個字串,請對n個字串按照字典序排列。
輸入第一行為乙個正整數n(1≤n≤1000),下面n行為n個字串(字串長度≤100),字串中只含有大小寫字母。
資料輸出n行,輸出結果為按照字典序排列的字串。示例1
9capto
catcard
twotoo
upboat
boot
boat方法一:boot
capcard
catto
tootwo
up
#include #include #include using namespace std;
int main()
multiset::iterator ptr;
for (ptr = se.begin(); ptr!=se.end(); ptr++)
return 0;
}
方法二:
#include #include #include #include using namespace std;
int main()
sort(ve.begin(),ve.end());
for (int j = 0; j < n; ++j)
return 0;
}
華為筆試 字串的連線最長路徑查詢
給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。輸出描述 資料輸出n行,輸出結果為按照字典序排列的字串。示例1輸入 capto catcard twotoo upboat boot 輸出bo...
華為筆試題 字串合併處理
按照指定規則對輸入的字串進行處理。詳細描述 將輸入的兩個字串合併。對合併後的字串進行排序,要求為 下標為奇數的字元和下標為偶數的字元分別從小到大排序。這裡的下標意思是字元在字串中的位置。對排序後的字串進行操作,如果字元為 0 9 或者 a f 或者 a f 則對他們所代表的16進製制的數進行bit倒...
程式設計題 字串的連線最長路徑查詢
talk is cheap,show me the code.給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。輸出描述 資料輸出n行,輸出結果為按照字典序排列的字串。輸入例子 9 capto...