Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Your task is to search for a palindrome string of length ( n ) in a two - dimensional matrix of random single characters between

Your task is to search for a palindrome string of length (n) in a two-dimensional matrix of random single characters between a-z, the idea of the solution is to parallelize the search between all possible threads and count each occurrence. The matrix size is 1000x1000, you can input the number you want to search or hard code it, search right to left, up to down and diagonally up to down.
Make sure to include timing to your code, you need to test using different thread count for your search, you need to submit two solutions using MPI and OpenMP:
1. OpenMP C file and results of execution.
2. Repeat part 1 using MPI C file and results of execution.
Code below can be used to generate the matrix:
for(i =0;i < ROWS;i++)
for(j =0;j < COLUMNS;j++)
a[i][j]=(rand()%26)+'A';
Hint: start your testing with a small matrix, 10x10 to make sure it is working, then scale up to 1000x1000.
You can use a function for the search or string libraries.
Example of execution output:
115038 palindromes of size 3 found in 0.002427 s. using 1 threads.
4374 palindromes of size 4 found in 0.002508 s. using 1 threads.
4275 palindromes of size 5 found in 0.003136 s. using 1 threads.
178 palindromes of size 6 found in 0.002827 s. using 1 threads.
********************************************************************************
115038 palindromes of size 3 found in 0.002453 s. using 2 threads.
4374 palindromes of size 4 found in 0.002186 s. using 2 threads.
4275 palindromes of size 5 found in 0.002031 s. using 2 threads.
178 palindromes of size 6 found in 0.002065 s. using 2 threads.
**
115038 palindromes of size 3 found in 0.002009 s. using 3 threads.
4374 palindromes of size 4 found in 0.002038 s. using 3 threads.
4275 palindromes of size 5 found in 0.002102 s. using 3 threads.
178 palindromes of size 6 found in 0.002114 s. using 3 threads.
********************************************************************************
115038 palindromes of size 3 found in 0.002232 s. using 4 threads.
4374 palindromes of size 4 found in 0.001983 s. using 4 threads.
4275 palindromes of size 5 found in 0.001983 s. using 4 threads.
178 palindromes of size 6 found in 0.002092 s. using 4 threads.
********************************************************************************
115038 palindromes of size 3 found in 0.002146 s. using 5 threads.
4374 palindromes of size 4 found in 0.001881 s. using 5 threads.
4275 palindromes of size 5 found in 0.001787 s. using 5 threads.
178 palindromes of size 6 found in 0.003253 s. using 5 threads.
*
115038 palindromes of size 3 found in 0.002279 s. using 6 threads.
4374 palindromes of size 4 found in 0.001906 s. using 6 threads.
4275 palindromes of size 5 found in 0.001828 s. using 6 threads.
178 palindromes of size 6 found in 0.001847 s. using 6 threads.
**
115038 palindromes of size 3 found in 0.001969 s. using 7 threads.
4374 palindromes of size 4 found in 0.001974 s. using 7 threads.
4275 palindromes of size 5 found in 0.001799 s. using 7 threads.
178 palindromes of size 6 found in 0.002704 s. using 7 threads.
*
115038 palindromes of size 3 found in 0.002787 s. using 8 threads.
4374 palindromes of size 4 found in 0.009502 s. using 8 threads.
4275 palindromes of size 5 found in 0.003185 s. using 8 threads.
178 palindromes of size 6 found in 0.003204 s. using 8 threads

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

Focus On Geodatabases In ArcGIS Pro

Authors: David W. Allen

1st Edition

1589484452, 978-1589484450

More Books

Students also viewed these Databases questions