PAT Advanced 1022. Digital Library (30) (C語言實(shí)現(xiàn))

我的PAT系列文章更新重心已移至Github,歡迎來看PAT題解的小伙伴請(qǐng)到Github Pages瀏覽最新內(nèi)容(本篇文章鏈接)。此處文章目前已更新至與Github Pages同步。歡迎star我的repo。

題目

A Digital Library contains millions of books, stored according to their
titles, authors, key words of their abstracts, publishers, and published
years. Each book is assigned an unique 7-digit number as its ID. Given any
query from a reader, you are supposed to output the resulting books, sorted in
increasing order of their ID's.

Input Specification:

Each input file contains one test case. For each case, the first line contains
a positive integer N ( \le 10^4 ) which is the total number of books. Then
N blocks follow, each contains the information of a book in 6 lines:

  • Line #1: the 7-digit ID number;
  • Line #2: the book title -- a string of no more than 80 characters;
  • Line #3: the author -- a string of no more than 80 characters;
  • Line #4: the key words -- each word is a string of no more than 10 characters without any white space, and the keywords are separated by exactly one space;
  • Line #5: the publisher -- a string of no more than 80 characters;
  • Line #6: the published year -- a 4-digit number which is in the range [1000, 3000].

It is assumed that each book belongs to one author only, and contains no more
than 5 key words; there are no more than 1000 distinct key words in total; and
there are no more than 1000 distinct publishers.

After the book information, there is a line containing a positive integer M
( \le 1000 ) which is the number of user's search queries. Then M lines
follow, each in one of the formats shown below:

  • 1: a book title
  • 2: name of an author
  • 3: a key word
  • 4: name of a publisher
  • 5: a 4-digit number representing the year

Output Specification:

For each query, first print the original query in a line, then output the
resulting book ID's in increasing order, each occupying a line. If no book is
found, print Not Found instead.

Sample Input:

3
1111111
The Testing Book
Yue Chen
test code debug sort keywords
ZUCS Print
2011
3333333
Another Testing Book
Yue Chen
test code sort keywords
ZUCS Print2
2012
2222222
The Testing Book
CYLL
keywords debug book
ZUCS Print2
2011
6
1: The Testing Book
2: Yue Chen
3: keywords
4: ZUCS Print
5: 2011
3: blablabla

Sample Output:

1: The Testing Book
1111111
2222222
2: Yue Chen
1111111
3333333
3: keywords
1111111
2222222
3333333
4: ZUCS Print
1111111
5: 2011
1111111
2222222
3: blablabla
Not Found

思路

數(shù)據(jù)的存儲(chǔ)與查詢。

使用了最簡(jiǎn)單暴力的結(jié)構(gòu)數(shù)組來存儲(chǔ),然后簡(jiǎn)單地按照ID排下序,遍歷數(shù)組核對(duì)就行了。

這樣寫是很簡(jiǎn)單的,如果要使用復(fù)雜的數(shù)據(jù)結(jié)構(gòu)肯定會(huì)更快。

作為參考:最后一個(gè)測(cè)試點(diǎn)用了660毫秒,上限為1200。

代碼

最新代碼@github,歡迎交流

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct book {
    int ID;
    char title[81];
    char author[81];
    char keywords[5][11];
    char publisher[81];
    int year;
} Book;

int cmpbyid(const void *a, const void *b)
{
    return (*(Book**)a)->ID - (*(Book**)b)->ID;
}

int main()
{
    int N, M, count, query_type, query_year;
    char space, query_str[81];
    Book books[10000] = {0}, *p, *booksbyid[10000];

    scanf("%d", &N);
    for(int i = 0; i < N; i++)
    {
        p = booksbyid[i] = books + i;
        scanf("%d%c", &p->ID, &space);
        scanf("%[^\n]%c", p->title, &space);
        scanf("%[^\n]%c", p->author, &space);
        space = '\0';
        for(int k = 0; space != '\n'; k++)
            scanf("%s%c", p->keywords[k], &space);
        scanf("%[^\n]%c", p->publisher, &space);
        scanf("%d", &p->year);
    }

    qsort(booksbyid, N, sizeof(Book*), cmpbyid);

    scanf("%d", &M);
    for(int i = 0; i < M; i ++)
    {
        count = 0;
        scanf("%d: %[^\n]%c", &query_type, query_str, &space);
        printf("%d: %s\n", query_type, query_str);
        for(int j = 0; j < N; j++)
        {
            p = booksbyid[j];
            switch(query_type)
            {
                case 1:
                    if(strcmp(query_str, p->title) == 0)
                    {
                        printf("%07d\n", p->ID);
                        count ++;
                    }
                    break;
                case 2:
                    if(strcmp(query_str, p->author) == 0)
                    {
                        printf("%07d\n", p->ID);
                        count ++;
                    }
                    break;
                case 3:
                    for(int k = 0; k < 5; k ++)
                        if(strcmp(query_str, p->keywords[k]) == 0)
                        {
                            printf("%07d\n", p->ID);
                            count ++;
                        }
                    break;
                case 4:
                    if(strcmp(query_str, p->publisher) == 0)
                    {
                        printf("%07d\n", p->ID);
                        count ++;
                    }
                    break;
                case 5:
                    sscanf(query_str, "%d", &query_year);
                    if(query_year == p->year)
                    {
                        printf("%07d\n", p->ID);
                        count ++;
                    }
                    break;
                default:
                    break;
            }
        }
        if(count == 0) puts("Not Found");
    }

    return 0;
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • pyspark.sql模塊 模塊上下文 Spark SQL和DataFrames的重要類: pyspark.sql...
    mpro閱讀 9,912評(píng)論 0 13
  • Cyber-dojo.org是編程操練者的樂園。下面是這個(gè)網(wǎng)站上的43個(gè)編程操練題目,供編程操練愛好者參考。 10...
    程序員吾真本閱讀 1,980評(píng)論 1 2
  • 先生的讀者,主動(dòng)靠近為多,多被先生博學(xué)而吸引,三兩句就掉幾本書,先生用字、辭藻、造境、皆恰然為之,自成高峰,與人格...
    徐子為閱讀 239評(píng)論 0 2
  • 在一個(gè)東南小鎮(zhèn),一戶普通的人家,雖然已是深更半夜,但是這家卻燈火通明。不時(shí)的傳來女人聲嘶力竭的叫聲。突然一陣嬰兒的...
    89e5fe9e43d5閱讀 614評(píng)論 0 2
  • 最近住的地方底下的大門經(jīng)常出現(xiàn)設(shè)備連接問題,導(dǎo)致常被鎖在門外進(jìn)不了大門。 例如像現(xiàn)在又被鎖在外面了...
    堅(jiān)持_6閱讀 403評(píng)論 0 2

友情鏈接更多精彩內(nèi)容