-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path06_staircase_search.cpp
82 lines (68 loc) · 1.67 KB
/
06_staircase_search.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
Staircase Search
(Search element in a row-wise & column-wise sorted array)
*/
#include <iostream>
using namespace std;
// function to search element in row-wise & col-wise sorted array
void staircase_search(int arr[][100], int rowSize, int colSize, int key){
int rowStart = 0;
int colEnd = colSize-1;
bool success = false;
while(rowStart <= rowSize-1 && colEnd >= 0){
if(key == arr[rowStart][colEnd]){
success = true;
break;
}else if(key > arr[rowStart][colEnd]){
rowStart++;
}else{
colEnd--;
}
}
if(success){
cout << "Values found at Index: " << rowStart <<"," << colEnd << endl;
}else{
cout << "Values Not Found" << endl;
}
}
// function to print array
void print_array(int arr[][100], int rowSize, int colSize){
for(int row=0; row<=rowSize-1; row++){
for(int col=0; col<=colSize-1; col++){
cout << arr[row][col] << " ";
}
cout << "\n";
}
cout << "\n";
}
// function to drive code
int main(){
int arr[100][100] ={{1,4,8,10},{2,5,9,15},{6,16,18,20},{11,17,19,23}};
int rowSize = 4;
int colSize = 4;
// display array
print_array(arr, rowSize, colSize);
int key;
cout << "Enter the search value: ";
cin >> key;
// search value
staircase_search(arr, rowSize, colSize, key);
return 0;
}
/*
OUTPUT:
Case1:
1 4 8 10
2 5 9 15
6 16 18 20
11 17 19 23
Enter the search value: 16
Values found at Index: 2,1
Case2:
1 4 8 10
2 5 9 15
6 16 18 20
11 17 19 23
Enter the search value: 33
Values Not Found
*/