PTA 图书列表

构建一个书类Book,包括名称(字符串),价格(整型),作者(字符串,多个作者当做一个字符串处理),版本号(整型),提供带参数的构造函数Book(String name, int price, String author, int edition),提供该类的toString()和equals()方法,toString方法返回所有成员属性的值的字符串形式,形如“name: xxx, price: xxx, author: xxx, edition: xxx”,当两个Book对象的名称(不关心大小写,无空格)、作者(不关心大小写,无空格)、版本号相同时,认为两者表示同一本书。 Main函数中,读入两本书,输出他们是否相等,打印两本书的信息。

构建一个书单类BookList,该类中用一个列表类对象存放书单,提供添加图书(addBook)、查找图书(searchBook)的函数
main函数从键盘输入多个Book添加到书单中,(添加时,提供书的名称、价格、作者、版本号),而后从键盘读入一本书,查找该列表对象中是否包含该书,若包含,输出”found: 该书在列表中的序号”,若不包含,输出“not found”,查找时,提供书的名称、作者、版本号。

输入描述:

添加书的个数
添加的书
查找的书

输出描述:

查找结果

裁判测试程序样例:

import java.util.Scanner;

/* 你的答案被嵌在这里 */

public class Main{
    
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        BookList bl = new BookList();
        int n = s.nextInt();
        for (int i=0; i<n;i++) {
            bl.addBook(new Book(s.next(),
                    s.nextInt(),
                    s.next(),
                    s.nextInt()));
        }
        bl.searchBook(new Book(s.next(),
                    0,
                    s.next(),s.nextInt()));
    }
}

输入样例:

在这里给出一组输入。例如:

2
ThinkingInJava
86
BruceEckel
4
CoreJava
95
CayS.Horstmann
10
CoreJava
CayS.Horstmann
10

输出样例:

在这里给出相应的输出。例如:

found: 1 

代码长度限制

16 KB

时间限制

400 ms

内存限制

64 MB

AC代码

class Book{
    String title;
    int price;
    String author;
    int version;
    public Book(String title, int price, String author, int version) {
        this.title = title;
        this.price = price;
        this.author = author;
        this.version = version;
    }

    @Override
    public String toString() {
        return ("name:"+title+", price: "+price+", author: "+author+", edition: "+version);
    }
    @Override
    public boolean equals(Object obj) {
        if(obj == null){
            return false;
        }
        Book other = (Book) obj;
        if(other.title.equalsIgnoreCase(this.title) && other.version==this.version&&other.author.equalsIgnoreCase(this.author)){
            return true;
        }else {
            return false;
        }
    }
    @Override
    public int hashCode(){
        int result=11;
        result=result*31+this.title.hashCode();
        result=result*31+this.author.hashCode();
        result=result*31+this.version;
        return result;
    }
}
class BookList{
    Book[] books;
    int count;
    public BookList(){
        books=new Book[1000];
        count=0;
    }
    public void addBook(Book book){
        books[count++]=book;
    }
    public void searchBook(Book book){
        for(int i=0;i<count;i++){
            if(books[i].equals(book)){
                System.out.println("found: "+i);
                return;
            }
        }
        System.out.println("not found");
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值