- 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
java解法
- 解题思路
- 这段代码实现了一个实时统计 URL 访问次数的功能,同时可以根据用户输入的数量 n 输出访问次数最多的前 n 个 URL。以下是解题步骤和逻辑:
数据存储与统计:
使用 TreeMap 存储 URL 及其对应的访问次数,TreeMap 会按键的字典序自动排序,方便管理和检索。
URL 的访问次数通过 getOrDefault 方法更新。
获取访问次数最多的 URL:
使用 PriorityQueue(优先队列)对 TreeMap 的 entrySet 进行排序。
排序规则:
优先按访问次数降序排列。
如果访问次数相同,则按 URL 的字典序升序排列。
最终输出按排序规则选取的前 n 个 URL。
输入处理:
如果输入是数字,调用 getTopN 方法输出结果。
如果输入是 URL,更新 URL 访问次数。
异常处理:
在 isNumeric 方法中捕获非数字输入的异常,确保程序不会因为非法输入而崩溃
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
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解法
数据结构选用:
使用对象 urlVisits 存储 URL 和对应的访问次数。
urlVisits 的键为 URL,值为该 URL 的访问次数。
输入处理:
如果输入是 URL,则更新 urlVisits 中对应 URL 的访问次数。
如果输入是数字,则按规则排序并输出访问次数最多的前 n 个 URL。
排序规则:
按访问次数降序排序。
如果访问次数相同,按字典序升序排序。
异步输入:
使用 Node.js 的 readline 模块实现异步输入,允许用户连续输入。
输出处理:
将排序后的前 n 个 URL 提取并用逗号拼接输出
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
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: