POS 409 Week 3 Sorting and Searching C# Program

$ 20

POS 409 Week 3 Sorting and Searching C# Program

Create a text file with one record of text data. This text file will be read by the program and the data in the text file will serve as a search term.

Design, implement, test, and debug a C# program using the following guidelines.

In the form load event, read the text file you built. This row of data will be a word or phrase that may occur in the data entered on the form (referred to later as “search term”). Convert the text read to uppercase.

Create a form with textboxes for 10 input fields. Designate the fields in such a way that the user enters specific data (for example, movies, books, names, or sports). The data entered should be of type string.

Add a button, “Accept Input”, to accept the input. In the click event for the button, validate the input and load the input into an array.
Validate the input by calling a value-returning method. Pass the 10 input fields to the method and return a value to indicate whether or not the data passed validation (for example, you can return a zero if the data passed validation and a 1 if it did not). Validation should consist of checking if data was entered in the field. Notify the user if the data is not valid and stop execution.
Add a void method that loads the input fields into an array and converts the data in them to uppercase.

Add another button, “Sort Input”, to sort the input data. In the click event for the button, add a void method to do the sorting. In the void method, use the selection sort algorithm presented in chapter 7 to sort the data. After sorting, in the button click event, create a loop to iterate through the array of sorted data and display the data in a listbox on the form.

Add a final button to the form, “Check Input”. In the click event for the button, call a value-returning method. This method will compare the data in the array and the search term (data read in the form load event). Count the number of elements in the array in which the search term is found. Pass the number of times the word or phrase is found back as the value returned. Put the results in a label on the form. For example, if my search term is “the”, the label might say “Search term – the – is found 3 times in the input data”. The search should count as a match if the search term is only a portion of the array element. For example, if your search term is “the” and the array element is “The Old Man and The Sea”, it should count as a match because “the” is contained within the array element. However, you do not need to count all occurrences of the search term in the array element. So, in “The Old Man and The Sea” example, count once, not twice.

Here is an example. My search term is “the”. The array elements are: “The Old Man and The Sea”, “Jane Eyre”, “Moby Dick”, “The Great Gatsby”, “MacBeth”, “The Iliad and the Odyssey”, “Huckleberry Finn”, “Catch-22”, “To Kill a Mockingbird”, and “The Bell Jar”. With this data, the program should find 4 occurrences of the search term (those array elements that are underlined).

The type of application to be developed is a Windows Forms application.

Please note that the reason the selection sort algorithm is required for this assignment is two-fold. First, it will give you a chance to look at someone else’s code and learn it well enough to figure out how to modify it. Second, it will give you additional practice with string handling when you learn how to compare strings. It is not acceptable to try to find another way to sort the data.

Include identifying information in the form of block comments at the top of each class in the project (programmer name, date, program description). Include adequate comments throughout the program, utilize meaningful names for controls, variables, fields, and forms. Include white space for readability purposes in the code. The focus of the project is on learning the C#.Net syntax. However, ensure the form is simple and easy to understand for the user. Refer to the Individual Assignment grading form to view grading criteria.

Zip the files of the project together and submit the zipped file. Include the text file used in your zip file also.

87 in stock

SKU: POS409WEEK3N Category:

Description

POS 409 Week 3 Sorting and Searching C# Program

Create a text file with one record of text data. This text file will be read by the program and the data in the text file will serve as a search term.

Design, implement, test, and debug a C# program using the following guidelines.

In the form load event, read the text file you built. This row of data will be a word or phrase that may occur in the data entered on the form (referred to later as “search term”). Convert the text read to uppercase.

Create a form with textboxes for 10 input fields. Designate the fields in such a way that the user enters specific data (for example, movies, books, names, or sports). The data entered should be of type string.

Add a button, “Accept Input”, to accept the input. In the click event for the button, validate the input and load the input into an array.
Validate the input by calling a value-returning method. Pass the 10 input fields to the method and return a value to indicate whether or not the data passed validation (for example, you can return a zero if the data passed validation and a 1 if it did not). Validation should consist of checking if data was entered in the field. Notify the user if the data is not valid and stop execution.
Add a void method that loads the input fields into an array and converts the data in them to uppercase.

Add another button, “Sort Input”, to sort the input data. In the click event for the button, add a void method to do the sorting. In the void method, use the selection sort algorithm presented in chapter 7 to sort the data. After sorting, in the button click event, create a loop to iterate through the array of sorted data and display the data in a listbox on the form.

Add a final button to the form, “Check Input”. In the click event for the button, call a value-returning method. This method will compare the data in the array and the search term (data read in the form load event). Count the number of elements in the array in which the search term is found. Pass the number of times the word or phrase is found back as the value returned. Put the results in a label on the form. For example, if my search term is “the”, the label might say “Search term – the – is found 3 times in the input data”. The search should count as a match if the search term is only a portion of the array element. For example, if your search term is “the” and the array element is “The Old Man and The Sea”, it should count as a match because “the” is contained within the array element. However, you do not need to count all occurrences of the search term in the array element. So, in “The Old Man and The Sea” example, count once, not twice.

Here is an example. My search term is “the”. The array elements are: “The Old Man and The Sea”, “Jane Eyre”, “Moby Dick”, “The Great Gatsby”, “MacBeth”, “The Iliad and the Odyssey”, “Huckleberry Finn”, “Catch-22”, “To Kill a Mockingbird”, and “The Bell Jar”. With this data, the program should find 4 occurrences of the search term (those array elements that are underlined).

The type of application to be developed is a Windows Forms application.

Please note that the reason the selection sort algorithm is required for this assignment is two-fold. First, it will give you a chance to look at someone else’s code and learn it well enough to figure out how to modify it. Second, it will give you additional practice with string handling when you learn how to compare strings. It is not acceptable to try to find another way to sort the data.

Include identifying information in the form of block comments at the top of each class in the project (programmer name, date, program description). Include adequate comments throughout the program, utilize meaningful names for controls, variables, fields, and forms. Include white space for readability purposes in the code. The focus of the project is on learning the C#.Net syntax. However, ensure the form is simple and easy to understand for the user. Refer to the Individual Assignment grading form to view grading criteria.

Zip the files of the project together and submit the zipped file. Include the text file used in your zip file also.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.