15 字串的連線最長路徑查詢

2021-09-13 23:09:14 字數 1368 閱讀 1490

給定n個字串,請對n個字串按照字典序排列。

輸入描述

輸入第一行為乙個正整數n(1≤n≤1000),下面n行為n個字串(字串長度≤100),字串中只含有大小寫字母。

輸出描述

資料輸出n行,輸出結果為按照字典序排列的字串。

示例1

輸入:9

cap

to

cat

card

two

too

up

boat

boot

輸出:boat

boot

cap

card

cat

to

too

two

up

#include

#include

#include

using

namespace std;

intmain()

for(

int j =

0; j < numstr;

++j)}}

for(

int n =

0; n < numstr;

++n )

}return0;

}

#include

#include

#include

#include

using

namespace std;

intmain()

sort

(vs.

begin()

, vs.

end())

;//直接利用sort()函式即可排序

vector

::iterator vit;

//迭代器進行遍歷

for(vit = vs.

begin()

; vit != vs.

end(

); vit++)}

return

0;

13 字串的連線最長路徑查詢

題目描述 給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。輸出描述 資料輸出n行,輸出結果為按照字典序排列的字串。輸入例子 9cap tocat card twotoo upboat boo...

字串的連線最長路徑查詢

給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。輸出描述 資料輸出n行,輸出結果為按照字典序排列的字串。輸入例子 9 capto catcard twotoo upboat boot輸出例子...

字串的連線最長路徑查詢

給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。資料輸出n行,輸出結果為按照字典序排列的字串。示例1 9 capto catcard twotoo upboat boot boat boot...