codevs 3026 噁心的撲克

2022-04-05 01:28:25 字數 761 閱讀 2447

時間限制: 1 s

空間限制: 64000 kb

題目等級 : ** silver

題目描述 description

有一副噁心的撲克,從小到大依次是3 , 4 , 5 , 6 , 7 , 8 , 9 , j , q , k , a , 2 ,每種都有100張。現在輸入乙個string,每乙個字元都是其中的一種,你的任務是:從小到大排序後輸出。

輸入描述 input description

參見樣例

輸出描述 output description

參見樣例

樣例輸入 sample input

輸入樣例:4q3ka292376j

輸出樣例:334679jqka22

樣例輸出 sample output

輸出樣例:334679jqka22

資料範圍及提示 data size & hint

字串長度小於200

簡單的排序

屠龍寶刀點選就送

#include #include 

#include

#include

using

namespace

std;

string

a;char s[1000

];bool cmp(char a,char

b)int

main()

sort(s,s+len,cmp);

for(int i=0;ii)

}

CODE VS 3026 噁心的撲克

題目描述 description 有一副噁心的撲克,從小到大依次是3 4 5 6 7 8 9 j q k a 2 每種都有100張。現在輸入乙個string,每乙個字元都是其中的一種,你的任務是 從小到大排序後輸出。輸入描述 input description 參見樣例 輸出描述 output de...

python初級 302 6 物件(二)

1 什麼是物件 2 什麼是類 3 什麼是屬性 4 什麼是方法 5 建立乙個dog類,dog的屬性有顏色,方法有汪汪叫 隨堂練習 class dog def init self,color self.color color defwangwang self print dog wangwang dog...

poj 3026 N bfs 最小生成樹

題意 乙個迷宮,一堆外星人,從起點找到所有外星人,路徑只能在有外星人的地方分叉,求最短總路徑 最小生成樹題,把每個外星人當做樹的結點,對每個外星人分別bfs求到其他外星人的最短的路徑,然後將這些路徑用最小生成樹求解,兵茶几的克爾蘇卡爾用二維座標轉一維即可。這裡資料量較小,所以可以直接用 x y 50...