Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions 74_search_element_in_row_column_sorted_matrix.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// C++ program to search an element in row-wise
// and column-wise sorted matrix
#include <bits/stdc++.h>

using namespace std;

int search(int mat[4][4], int n, int x)
{
if (n == 0)
return -1;

int smallest = mat[0][0], largest = mat[n - 1][n - 1];
if (x < smallest || x > largest)
return -1;

int i = 0, j = n - 1;
while (i < n && j >= 0)
{
if (mat[i][j] == x)
{
cout << "n Found at "
<< i << ", " << j;
return 1;
}
if (mat[i][j] > x)
j--;

else
i++;
}

cout << "n Element not found";
return 0;
}

// Driver code
int main()
{
int mat[4][4] = { { 10, 20, 30, 40 },
{ 15, 25, 35, 45 },
{ 27, 29, 37, 48 },
{ 32, 33, 39, 50 } };
search(mat, 4, 29);

return 0;
}