767.Reorganize-String

767. Reorganize String

题目地址

https://leetcode.com/problems/reorganize-string/

题目描述

Given a string S, check if the letters can be rearranged so that two characters that are adjacent to each other are not the same.

If possible, output any possible result. If not possible, return the empty string.

Example 1:
Input: S = "aab"
Output: "aba"

Example 2:
Input: S = "aaab"
Output: ""

Note:
S will consist of lowercase letters and have length in range [1, 500]

代码

Approach 1: Sort by Count

Complexity Analysis

1 3 5 7 9...

0 2 4 6 8...

  • Time Complexity: O(A(_N+logA)), where N is the length of _S, and A is the size of the alphabet. In Java, our implementation is O_(_N+AlogA). If A is fixed, this complexity is O(N).

  • Space Complexity: O(N). In Java, our implementation is O_(_N+A).

Approach #2 Greedy with Heap

Complexity Analysis

  • Time Complexity: O(_N_logA)), where N is the length of S, and A is the size of the alphabet. If A is fixed, this complexity is O(N).

  • Space Complexity: O(A). If A is fixed, this complexity is O(1).

Last updated

Was this helpful?