藏书问题~

简介: 藏书问题~
package com.example.mybatisplus.MyCloneable;
import java.util.*;
public class demo1 {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        List<String> stringList = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            stringList.add(scanner.next());
        }
        // 使用 Map 来统计每种图书的个数
        Map<String, Integer> bookCountMap = new HashMap<>();
        for (String book : stringList) {
            if (bookCountMap.containsKey(book)) {
                // 如果图书已经在 map 中存在,增加其计数
                int count = bookCountMap.get(book);
                bookCountMap.put(book, count + 1);
            } else {
                // 如果图书不在 map 中,添加并设置计数为 1
                bookCountMap.put(book, 1);
            }
        }
        //输出Map中键的个数
        Set<String> keys = bookCountMap.keySet();
        System.out.println(keys.size());
        // 遍历 Map 并输出图书的种类和个数
        for (Map.Entry<String, Integer> entry : bookCountMap.entrySet()) {
            String book = entry.getKey();
            int count = entry.getValue();
            System.out.println(book + " " + count);
        }
    }
}

输出如下所示:

5
C语言程序设计
JAVA
数据结构
JAVA
数据结构
3
JAVA 2
C语言程序设计 1
数据结构 2
相关文章
无参函数和有参函数的定义使用方法及其调用
无参函数和有参函数的定义使用方法及其调用
408 0
|
4月前
从键盘输入一些字符
【7月更文挑战第9天】从键盘输入一些字符。
53 15
|
6月前
|
NoSQL Linux 测试技术
如何在Linux环境下安装Redis呢?
如何在Linux环境下安装Redis呢?
108 1
|
6月前
|
SQL 关系型数据库 MySQL
解决向MySQL中导入文件中的 数据时出现的问题~
解决向MySQL中导入文件中的 数据时出现的问题~
102 0
|
6月前
|
Linux Windows
FinalShell连接Linux虚拟机报错java.net.ConnectException: Connection timed out: connect(亲测有效)
FinalShell连接Linux虚拟机报错java.net.ConnectException: Connection timed out: connect(亲测有效)
1030 0
|
6月前
|
Java 测试技术
使用MybatisPlus时出现的java.lang.NullPointerException异常~
使用MybatisPlus时出现的java.lang.NullPointerException异常~
201 0
使用MybatisPlus时出现的java.lang.NullPointerException异常~
|
6月前
|
NoSQL Redis 数据库
解决noauth authentication required异常
解决noauth authentication required异常
372 0
解决noauth authentication required异常
|
6月前
|
NoSQL Redis
解决(error) ERR Errors trying to SHUTDOWN. Check logs.问题~
解决(error) ERR Errors trying to SHUTDOWN. Check logs.问题~
161 0
|
6月前
|
NoSQL Linux 网络安全
解决Caused by: java.net.SocketTimeoutException: connect timed out Exception in thread “main“ redis.cli
解决Caused by: java.net.SocketTimeoutException: connect timed out Exception in thread “main“ redis.cli
139 0
|
6月前
|
SQL IDE 开发工具
好用的MybatisX插件~
好用的MybatisX插件~
217 0