給定乙個長度不超過 104 的、僅由英文本母構成的字串。請將字元重新調整順序,按patestpatest....
這樣的順序輸出,並忽略其它字元。當然,六種字元的個數不一定是一樣多的,若某種字元已經輸出完,則餘下的字元仍按 patest 的順序列印,直到所有字元都被輸出。
輸入在一行中給出乙個長度不超過 104 的、僅由英文本母構成的非空字串。
在一行中按題目要求輸出排序後的字串。題目保證輸出非空。
思路:先統計"patest"各個字元的數量,然後以字元中數量最多的為迴圈次數,按照順序輸出即可,
#include #include #include int key(char c);
const int n=10005;
int main( )
;// 分別統計"patest"各個字元數量
int i,j,k,len,n=0;
scanf("%s",str);
len=strlen(str);
for(i=0;i=0)//只統計"patest"
arr[k]++; }
for(i=0;i<6;i++)//統計"patest"數量最多的
for(i=0;i
}} return 0;
}int key(char c)
乙級 PAT 1043 輸出PATest 20
給定乙個長度不超過10000的 僅由英文本母構成的字串。請將字元重新調整順序,按 patestpatest.這樣的順序輸出,並忽略其它字元。當然,六種字元的個數不一定是一樣多的,若某種字元已經輸出完,則餘下的字元仍按patest的順序列印,直到所有字元都被輸出。輸入格式 輸入在一行中給出乙個長度不超...
PAT 1043 二叉查詢樹
include include include using namespace std const int size 5000 int g preorder size intg preorderimg size intg postorder size int g index 0 struct bsn...
PAT 乙級 1043 輸出PATest
時間限制 400 ms 記憶體限制 65536 kb 長度限制 8000 b 判題程式 standard 作者 chen,yue 給定乙個長度不超過10000的 僅由英文本母構成的字串。請將字元重新調整順序,按 patestpatest.這樣的順序輸出,並忽略其它字元。當然,六種字元的個數不一定是一...