Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#include #include #include #include #define N 1 0 #define M 1 0 using namespace std; / / Function to create a sorted matrix. / /

#include
#include
#include
#include
#define N 10
#define M 10
using namespace std;
// Function to create a sorted matrix.
// You don't need to modify or understand this (just don't waste time)
std::vector vector > createSortedMatrix()
{
std::vector vector > matrix(N);
std::vector row(M);
int i,j,n;
srand(time(NULL));
for (i=0;i > m)
{
for (int i=0;i (write your answer HERE!)
*/
bool searchNum(vector vector > m, int e)
{
//*********
// Write your solution here for Question 1.
//*********
}
// You don't need to change the main function.
int main()
{
std::vector vector > matrix(N);
int e;
matrix = createSortedMatrix();
printSortedMatrix(matrix);
std::cout "Element to search for : ";
std:cin >> e;
bool result = searchNum(matrix,e);
if (result)
cout e " is found in the matrix!";
else
cout e " is NOT found";
return 0;
}
image text in transcribed

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_2

Step: 3

blur-text-image_3

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

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions