首页 > 其他 > 详细

791. Custom Sort String

时间:2021-07-15 09:50:14      阅读:9      评论:0      收藏:0      [点我收藏+]

order and str are strings composed of lowercase letters. In order, no letter occurs more than once.

order was sorted in some custom order previously. We want to permute the characters of str so that they match the order that order was sorted. More specifically, if x occurs before y in order, then x should occur before y in the returned string.

Return any permutation of str (as a string) that satisfies this property.

Example:
Input: 
order = "cba"
str = "abcd"
Output: "cbad"
Explanation: 
"a", "b", "c" appear in order, so the order of "a", "b", "c" should be "c", "b", and "a". 
Since "d" does not appear in order, it can be at any position in the returned string. "dcba", "cdba", "cbda" are also valid outputs.

 

Note:

  • order has length at most 26, and no character is repeated in order.
  • str has length at most 200.
  • order and str consist of lowercase letters only.
class Solution {
    public String customSortString(String order, String str) {
        int[] arr = new int[26];
        for(char c: str.toCharArray()) arr[c - a]++;
        StringBuilder sb = new StringBuilder();
        for(char c : order.toCharArray()) {
            int f = arr[c - a];
            while(f > 0) {
                sb.append(c);
                arr[c - a]--;
                f--;
            }
        }
        for(int i = 0; i < 26; i++) {
            int f = arr[i];
            while(f > 0) {
                sb.append((char)(a + i));
                f--;
            }
        }
        return sb.toString();
    }
}

frequency

791. Custom Sort String

原文:https://www.cnblogs.com/wentiliangkaihua/p/15013571.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!