LeetCode 791. 自定义字符串排序

 基本思路:

  1. 首先遍历一遍T,将T中每个元素的个数存储在TT中。
  2. 再遍历一遍S 将S中 从头到尾的每一个元素  在TT中找打出现对应的次数,将其Push到Res中。并将对应的TT位置置0.
  3. 最后在遍历一遍TT,目的是将没在S中出现的字符push到Res中。
class Solution {
public:
    string customSortString(string S, string T) {
        int TT[27]={0};
        string Res;
        int LenS=S.size(),LenT=T.size();

        for(int i=0;i

 

 

你可能感兴趣的:(Leetcode)