Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Objective To implement a C program that uses structures, dynamic memory allocation, and string functions provided by the C library. Description The goal of this

Objective

To implement a C program that uses structures, dynamic memory allocation, and string functions provided by the C library.

Description

The goal of this project is to implement a C program that takes a variable number of keywords as command line argument, reads text from the standard input stream, searches the keywords in the input stream, and when the end of input stream is reached prints the number of times each keyword appears in the input text.

Here is a sample input and output (input is in italics):

$ ./a.out an and or to This is some sample text. You have to find out how many times certain keywords appear. It is possible that some words may not appear at all while some words might appear multiple times. There could be newlines and white spaces and long lines. You should keep accepting the text until the end of file character is found. You can use the example program getline.c to figure out how to read line by line until there are no more characters in the input stream.  ^D Here is the number of times each keyword appears: an: 0 and: 2 or: 0 to: 3

Note that the keywords should match exactly and are case sensitive. For example: an is part of many and can but there is no explicit an anywhere in the text.

Guidelines and Hints

  1. Design the program using separate functions to perform each of the key tasks. For example:
    1. The first task is to read the keywords provided as command-line arguments and create a table that will have fields for the keywords and counts. Use a structure with two fields: one for the keyword and one for the count and then create an array of structures based on the number of keywords. Note that you should NOT use static declaration and hardcode the number of keywords, the program should take variable number of keywords. Initialize the count field to zero to start. You can create a function to perform this task, say, init_table with appropriate arguments.
    2. Next read the text from standard input using the getline() method provided by the C library as shown in the example getline.c (you are free to use any other C library function that you prefer).
    3. Since we have to compare the keywords with complete words (not partial matches) we have to break down the line we read into a set of keywords. You can do this using a separate function or use one of the C library functions. Look at https://en.cppreference.com/w/c/string/byte for a complete list of string functions provided by the C library.
    4. After you read a line, search for the keywords in the input and update the table if a match is found. You can use one of the C string library functions to perform the search. You can create a function to perform the search and update the table, say, update_table with appropriate arguments.
    5. When you reach the end of the input stream, print the table. You can use a separate function to print the table, say, display_table with appropriate arguments.
  2. Test the program with simple input as shown in the example above. Instead of typing the input text every time, you can save the sample text in a file (say, input.txt) and use I/O redirection as shown below:
    $ ./a.out an and or to < input.txt
  3. Once you have tested your program with simple input files, you can test the program with larger text files (tinyTale.txt tale.txt) available in Canvas in the Project1 directory (Files -> code -> project1) using the I/O redirection (as shown in step 2 above).
  4. Comment you code and include a comment header section that provides instructions for compiling and running the program.
  5. You have to test this program on the CS Linux Systems (the Vulcan machines). If the TA is not able to compile and run your program on the CS Linux Systems you will not get credit for this project.
  6. Use git to develop this project (follow the instructions to setup the git repository from Assignment-3 or see instructions under #2 in Submission below).
  7. Upload only the source file(s) to Canvas and make sure to include your git repository URL in the comment section of the submission.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Current Trends In Database Technology Edbt 2006 Edbt 2006 Workshops Phd Datax Iidb Iiha Icsnw Qlqp Pim Parma And Reactivity On The Web Munich Germany March 2006 Revised Selected Papers Lncs 4254

Authors: Torsten Grust ,Hagen Hopfner ,Arantza Illarramendi ,Stefan Jablonski ,Marco Mesiti ,Sascha Muller ,Paula-Lavinia Patranjan ,Kai-Uwe Sattler ,Myra Spiliopoulou ,Jef Wijsen

2006th Edition

3540467882, 978-3540467885

More Books

Students also viewed these Databases questions

Question

The default view for a report is

Answered: 1 week ago