- 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
java解法
- 解题思路
- 该代码实现了一个URL统计和排序功能。核心目标是:
统计输入中每个URL的出现次数:
使用 TreeMap 存储URL及其出现次数,保证按字典序自动排序。
处理用户输入:
如果输入为数字 n,输出前 n 个出现次数最多的URL。
如果输入为URL,更新URL的统计次数。
排序规则:
出现次数按降序排序。
若出现次数相同,按字典序升序排序。
优先队列实现排序:
使用 PriorityQueue 实现排序,以满足自定义排序规则。
程序通过不断接收输入处理数据,直到输入结束
import java.util.*;
public class Main {
static Map<String, Integer> urlCount = new TreeMap<>();
static PriorityQueue<Map.Entry<String, Integer>> pq;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNextLine()) {
String input = sc.nextLine();
if (isNumeric(input)) {
int n = Integer.parseInt(input);
System.out.println(getTopN(n));
} else {
urlCount.put(input, urlCount.getOrDefault(input, 0) + 1);
}
}
}
private static String getTopN(int n) {
pq = new PriorityQueue<>((a, b) -> {
if (!a.getValue().equals(b.getValue())) {
return b.getValue() - a.getValue();
} else {
return a.getKey().compareTo(b.getKey());
}
});
pq.addAll(urlCount.entrySet());
StringJoiner sj = new StringJoiner(",");
for (int i = 0; i < n && !pq.isEmpty(); i++) {
sj.add(pq.poll().getKey());
}
return sj.toString();
}
private static boolean isNumeric(String str) {
try {
Integer.parseInt(str);
return true;
} catch (NumberFormatException e) {
return false;
}
}
}
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"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
统计输入中每个 URL 的访问次数:
使用对象(urlVisits)记录 URL 的访问次数。
处理用户输入:
如果输入是一个数字 n,则输出访问次数最多的前 n 个 URL。
如果输入是一个 URL,则更新其访问次数。
排序规则:
访问次数按降序排序;
访问次数相同时,按字典序升序排序。
动态输入读取:
使用 readline 模块异步读取标准输入。
每次读取一行后判断输入类型并处理
const readline = require("readline").createInterface({ input: process.stdin });
const iterator = readline[Symbol.asyncIterator]();
const getInput = async () => (await iterator.next()).value;
(async function () {
const urlVisits = {};
while ((input = await getInput())) {
const number = parseInt(input);
if (isNaN(number)) {
urlVisits[input] = (urlVisits[input] ?? 0) + 1;
continue;
}
const result = Object.entries(urlVisits)
.sort(
(first, second) =>
second[1] - first[1] || first[0].localeCompare(second[0])
)
.slice(0, number)
.map((item) => item[0])
.join(",");
console.log(result);
}
})();
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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: