Skip to content

Latest commit

 

History

History
167 lines (141 loc) · 4.72 KB

File metadata and controls

167 lines (141 loc) · 4.72 KB

中文文档

Description

You are given a string s. Reorder the string using the following algorithm:

  1. Pick the smallest character from s and append it to the result.
  2. Pick the smallest character from s which is greater than the last appended character to the result and append it.
  3. Repeat step 2 until you cannot pick more characters.
  4. Pick the largest character from s and append it to the result.
  5. Pick the largest character from s which is smaller than the last appended character to the result and append it.
  6. Repeat step 5 until you cannot pick more characters.
  7. Repeat the steps from 1 to 6 until you pick all characters from s.

In each step, If the smallest or the largest character appears more than once you can choose any occurrence and append it to the result.

Return the result string after sorting s with this algorithm.

 

Example 1:

Input: s = "aaaabbbbcccc"
Output: "abccbaabccba"
Explanation: After steps 1, 2 and 3 of the first iteration, result = "abc"
After steps 4, 5 and 6 of the first iteration, result = "abccba"
First iteration is done. Now s = "aabbcc" and we go back to step 1
After steps 1, 2 and 3 of the second iteration, result = "abccbaabc"
After steps 4, 5 and 6 of the second iteration, result = "abccbaabccba"

Example 2:

Input: s = "rat"
Output: "art"
Explanation: The word "rat" becomes "art" after re-ordering it with the mentioned algorithm.

 

Constraints:

  • 1 <= s.length <= 500
  • s consists of only lowercase English letters.

Solutions

Python3

class Solution:
    def sortString(self, s: str) -> str:
        counter = [0] * 26
        for c in s:
            counter[ord(c) - ord('a')] += 1
        ans = []
        while len(ans) < len(s):
            for i in range(26):
                if counter[i]:
                    ans.append(chr(i + ord('a')))
                    counter[i] -= 1
            for i in range(25, -1, -1):
                if counter[i]:
                    ans.append(chr(i + ord('a')))
                    counter[i] -= 1
        return ''.join(ans)

Java

class Solution {
    public String sortString(String s) {
        int[] counter = new int[26];
        for (char c : s.toCharArray()) {
            ++counter[c - 'a'];
        }
        StringBuilder sb = new StringBuilder();
        while (sb.length() < s.length()) {
            for (int i = 0; i < 26; ++i) {
                if (counter[i] > 0) {
                    sb.append((char) ('a' + i));
                    --counter[i];
                }
            }
            for (int i = 25; i >= 0; --i) {
                if (counter[i] > 0) {
                    sb.append((char) ('a' + i));
                    --counter[i];
                }
            }
        }
        return sb.toString();
    }
}

C++

class Solution {
public:
    string sortString(string s) {
        vector<int> counter(26);
        for (char c : s) ++counter[c - 'a'];
        string ans = "";
        while (ans.size() < s.size()) {
            for (int i = 0; i < 26; ++i) {
                if (counter[i]) {
                    ans += (i + 'a');
                    --counter[i];
                }
            }
            for (int i = 25; i >= 0; --i) {
                if (counter[i]) {
                    ans += (i + 'a');
                    --counter[i];
                }
            }
        }
        return ans;
    }
};

Go

func sortString(s string) string {
	counter := ['z' + 1]int{}
	for _, c := range s {
		counter[c]++
	}
	var ans []byte
	for len(ans) < len(s) {
		for i := byte('a'); i <= 'z'; i++ {
			if counter[i] > 0 {
				ans = append(ans, i)
				counter[i]--
			}
		}
		for i := byte('z'); i >= 'a'; i-- {
			if counter[i] > 0 {
				ans = append(ans, i)
				counter[i]--
			}
		}
	}
	return string(ans)
}

...