前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >791. Custom Sort String

791. Custom Sort String

作者头像
用户1147447
发布2019-05-26 00:20:50
3120
发布2019-05-26 00:20:50
举报
文章被收录于专栏:机器学习入门机器学习入门

LWC 73: 791. Custom Sort String

Problem:

S and T are strings composed of lowercase letters. In S, no letter occurs more than once. S was sorted in some custom order previously. We want to permute the characters of T so that they match the order that S was sorted. More specifically, if x occurs before y in S, then x should occur before y in the returned string. Return any permutation of T (as a string) that satisfies this property.

Example:

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

Note:

  • S has length at most 26, and no character is repeated in S.
  • T has length at most 200.
  • S and T consist of lowercase letters only.

思路1: 调用官方排序接口,把先后顺序传入Comparator。

代码如下:

代码语言:javascript
复制
    public String customSortString(String S, String T) {
        Character[] cs = new Character[T.length()];
        for (int i = 0; i < T.length(); ++i) {
            cs[i] = T.charAt(i);
        }
        Arrays.sort(cs, new Comparator<Character>() {
            @Override
            public int compare(Character o1, Character o2) {
                return S.indexOf(o1) - S.indexOf(o2);
            }
        });

        StringBuilder sb = new StringBuilder();
        for (char c : cs) sb.append(c);
        return sb.toString();
    }

思路2: 先把T的每个字符和对应个数存入bucket数组,根据S的顺序扫一遍,最后再扫一遍剩余字符(非S中的字符)。

代码如下:

代码语言:javascript
复制
   public String customSortString(String S, String T) {
        int[] bucket = new int[26];
        for (char c : T.toCharArray()) {
            bucket[c - 'a']++;
        }

        StringBuilder sb = new StringBuilder();
        for (char c : S.toCharArray()) {
            for (int i = 0; i < bucket[c - 'a']; i++) {
                sb.append(c);
            }
            bucket[c - 'a'] = 0;
        }

        for (int i = 0; i < 26; i++) {
            for (int j = 0; j < bucket[i]; j++) {
                sb.append((char) (i + 'a'));
            }
        }
        return sb.toString();
    }

Python版本:

代码语言:javascript
复制
class Solution(object):
    def customSortString(self, S, T):
        """
        :type S: str
        :type T: str
        :rtype: str
        """
        c, s = collections.Counter(T), set(S)
        return ''.join(i * c[i] for i in S) + ''.join(i * c[i] for i in c if i not in s)
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018年02月26日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LWC 73: 791. Custom Sort String
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档