Question: Multithreading Programming Project Select and implement ONE of the following multithreaded programming applications and submit the following: A short report (PDF) that documents the application
Multithreading Programming Project Select and implement ONE of the following multithreaded programming applications and submit the following: A short report (PDF) that documents the application work including introduction, application structure/flowchart, and performance analysis (speed and response time). Code files package. Submission deadline: 31/12/2020 Group-based work: a team of up to two students. You can use any programming language to implement the application. A GUI should be provided to visualize the processed threads on the screen. Document your code by any relevant comments. Project 1 -Sudoku Solution Validator [Page-262 it textbook] A Sudoku puzzle uses a 99 grid in which each column and row, as well as each of the nine 3x3 subgrids, must contain all of the digits 1 ... 9. Figure 4.26 presents an example of a valid Sudoku puzzle. This project consists of designing a multithreaded application that determines whether the solution to a Sudoku puzzle is valid. There are several different ways of multithreading this application One suggested strategy is to create threads that check the following criteria: A thread to check that each column contains the digits 1 through 9 A thread to check that each row contains the digits 1 through 9 Nine threads to check that each of the 3 x 3 subgrids contains the digits 1 through 9 This would result in a total of eleven separate threads for validating a Sudoku puzzle. However, you are welcome to create even more threads for this project. For example, rather than creating one thread that checks all nine columns, you could create nine separate threads and have each of them check one column 24 . Figure 4.26 Solution to axudou pele
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
