Home >Backend Development >PHP Tutorial >. Largest Number
179. Largest Number
Difficulty: Medium
Topics: Array, String, Greedy, Sorting
Given a list of non-negative integers nums, arrange them such that they form the largest number and return it.
Since the result may be very large, so you need to return a string instead of an integer.
Example 1:
Example 2:
Constraints:
Solution:
We need to compare numbers based on their concatenated results. For two numbers a and b, we compare ab (a concatenated with b) and ba (b concatenated with a), and decide the order based on which forms a larger number.
Let's implement this solution in PHP: 179. Largest Number
Explanation:
- usort($nums, $comparator): We sort the array using a custom comparator. For each pair of numbers a and b, we compare the concatenated strings a . b and b . a.
- Comparison Logic: The strcmp($order2, $order1) ensures that we get a descending order based on the concatenated strings.
- Edge Case Handling: If the first character of the resulting concatenated string is 0, we return "0", which happens when all elements of the array are zeros.
- Time Complexity: Sorting the numbers takes O(n log n), and concatenating them takes O(n), where n is the number of numbers in the input array.
This solution handles the constraints efficiently and returns the largest possible number as a string.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!
If you want more helpful content like this, feel free to follow me:
The above is the detailed content of . Largest Number. For more information, please follow other related articles on the PHP Chinese website!