- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
java解法
- 解题思路
- 本程序的目标是对存储容量进行排序,输入的存储容量包含 M(MB),G(GB),T(TB) 等单位,排序时需按照实际大小进行比较。
解题步骤
读取输入
读取整数 n,表示存储设备的数量。
读取 n 行存储容量信息,并存入 List disks。
计算存储单位的实际数值 computeValue(String capacity)
遍历 capacity 字符串,提取数值部分 number 和单位部分 M/G/T:
M (MB):保持数值不变,乘 1。
G (GB):转换为 MB,1G = 1024M。
T (TB):转换为 MB,1T = 1024 × 1024M。
计算统一转换后的 MB 值,并返回。
对 disks 进行排序
使用 sort() 方法,自定义 Comparator 进行排序,比较 computeValue(a) 和 computeValue(b)。
输出排序后的存储容量
遍历 disks,逐行打印排序后的结果
import java.util.*;
public class Main {
private static long computeValue(String capacity) {
long total = 0;
int multiplier = 0;
StringBuilder number = new StringBuilder();
for (char c : capacity.toCharArray()) {
if (Character.isDigit(c)) {
number.append(c);
} else {
int num = Integer.parseInt(number.toString());
switch (c) {
case 'M': multiplier = 1; break;
case 'G': multiplier = 1024; break;
case 'T': multiplier = 1024 * 1024; break;
}
total += num * multiplier;
number.setLength(0);
}
}
return total;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.nextLine();
List<String> disks = new ArrayList<>();
for (int i = 0; i < n; i++) {
disks.add(sc.nextLine());
}
disks.sort((a, b) -> Long.compare(computeValue(a), computeValue(b)));
for (String disk : disks) {
System.out.println(disk);
}
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
C++解法
- 解题思路
- 本程序的目标是对存储容量进行排序,输入的存储容量包含 M(MB),G(GB),T(TB) 等单位,排序时需按照实际大小进行比较。
解题步骤
读取输入
读取整数 n,表示存储设备的数量。
读取 n 行存储容量信息,并存入 vector capacitys。
计算存储单位的实际数值 calc(const string& cap)
遍历 cap 字符串,提取数值部分 num 和单位部分 M/G/T:
M (MB):保持数值不变,乘 1。
G (GB):转换为 MB,1G = 1024M。
T (TB):转换为 MB,1T = 1024 × 1024M。
计算统一转换后的 MB 值,并返回。
对 capacitys 进行排序
使用 sort() 方法,调用 compare() 进行排序,比较 calc(a) 和 calc(b)。
输出排序后的存储容量
遍历 capacitys,逐行打印排序后的结果
#include
#include
#include
#include
#include
using namespace std;
int stringToInt(const string &s) {
stringstream ss(s);
int num;
ss >> num;
return num;
}
int calc(const string& cap) {
int ans = 0;
string num;
for (size_t i = 0; i < cap.size(); ++i) {
char c = cap[i];
if (isdigit(c)) {
num += c;
} else {
if (c == 'M') {
ans += stringToInt(num);
} else if (c == 'G') {
ans += stringToInt(num) * 1024;
} else if (c == 'T') {
ans += stringToInt(num) * 1024 * 1024;
}
num.clear();
}
}
return ans;
}
bool compare(const string &a, const string &b) {
return calc(a) < calc(b);
}
void getResult(vector<string> &capacitys) {
sort(capacitys.begin(), capacitys.end(), compare);
for (size_t i = 0; i < capacitys.size(); ++i) {
cout << capacitys[i] << endl;
}
}
int main() {
int n;
cin >> n;
vector<string> capacitys(n);
for (int i = 0; i < n; ++i) {
cin >> capacitys[i];
}
getResult(capacitys);
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
解题步骤
读取输入
监听标准输入,每次读取一行并存入 lines 数组。
第一行输入 n,表示存储设备的数量。
读取 n 行存储容量信息,并存入 lines。
当 lines.length === n + 1 时,调用 processDisks(lines) 进行处理。
计算存储单位的实际数值 getCapacity(disk)
使用正则表达式 (\d+)([MGT]) 解析存储容量,提取数值和单位:
M (MB):保持数值不变。
G (GB):转换为 MB,1G = 1024M。
T (TB):转换为 MB,1T = 1024 × 1024M。
计算统一转换后的 MB 值,并返回。
对 disks 进行排序
使用 sort() 方法,按照 getCapacity() 计算的数值排序。
输出排序后的存储容量
遍历 disks,逐行打印排序后的结果
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const lines = [];
rl.on("line", (line) => {
lines.push(line);
if (lines.length === parseInt(lines[0], 10) + 1) {
lines.shift();
processDisks(lines);
lines.length = 0;
}
});
function processDisks(disks) {
disks
.sort((a, b) => getCapacity(a) - getCapacity(b))
.forEach((disk) => console.log(disk));
}
function getCapacity(disk) {
let regex = /(\d+)([MGT])/g;
let result;
let total = 0;
while ((result = regex.exec(disk)) !== null) {
let num = parseInt(result[1], 10);
let unit = result[2];
switch (unit) {
case "M":
total += num;
break;
case "G":
total += num * 1024;
break;
case "T":
total += num * 1024 * 1024;
break;
}
}
return total;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: