首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
10905children专题
uva-10905Children's Game(贪心)
题目:uva-10905Children's Game(贪心) 题目大意:给出N个正整数,问将这N个整数连接后得到的最大的数。 解题思路:排序,将两两连接有AB 或是BA,将如果AB > BA ,那么就将A排在B的后面,反之则反之。 代码: #include <stdio.h>#include <string.h>#include <algorithm>usin
阅读更多...