Re: [閒聊] 每日leetcode已回收
看板Marginalman作者DJYOSHITAKA (franchouchouISBEST)時間1年前 (2024/03/11 22:53)推噓2(2推 0噓 5→)留言7則, 5人參與討論串37/1554 (看更多)
791. Custom Sort String
你板大師都好猛
剩我只會水桶了
string customSortString(string order, string s) {
vector<int> cnt(26,0);
for(auto c : s)
{
cnt[c-'a']++;
}
string ans = "";
for(auto c : order)
{
ans += string(cnt[c-'a'], c);
cnt[c-'a'] = 0;
}
for(int i=0; i<26; i++)
{
if(cnt[i] > 0)
{
ans += string(cnt[i], 'a'+i);
}
}
return ans;
}
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 1.171.13.229 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/Marginalman/M.1710168829.A.B12.html
※ 編輯: DJYOSHITAKA (1.171.13.229 臺灣), 03/11/2024 22:54:11
→
03/11 22:55,
1年前
, 1F
03/11 22:55, 1F
→
03/11 22:55,
1年前
, 2F
03/11 22:55, 2F
推
03/11 22:59,
1年前
, 3F
03/11 22:59, 3F
推
03/11 23:02,
1年前
, 4F
03/11 23:02, 4F
→
03/11 23:02,
1年前
, 5F
03/11 23:02, 5F
→
03/11 23:03,
1年前
, 6F
03/11 23:03, 6F
→
03/11 23:05,
1年前
, 7F
03/11 23:05, 7F
討論串 (同標題文章)
完整討論串 (本文為第 37 之 1554 篇):