fix: add <cstdint> to search/**

This commit is contained in:
realstealthninja
2024-08-31 11:30:18 +05:30
parent 6357548464
commit 52ff5e8c92
6 changed files with 36 additions and 23 deletions

View File

@@ -36,6 +36,7 @@
#include <algorithm> /// for std::sort function
#include <cassert> /// for std::assert
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <vector> /// for std::vector
/******************************************************************************

View File

@@ -14,7 +14,8 @@
*/
#include <cassert>
#include <cmath>
#include <iostream>
#include <cstdint>
#include <cstdint> /// for integral typedefs
#ifdef _MSC_VER
#include <string> // use for MS Visual C++
#else

View File

@@ -12,9 +12,9 @@
*/
#include <cassert> /// for assert
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <vector> /// for std::vector
/**
* @namespace search
* @brief Search algorithms

View File

@@ -31,6 +31,7 @@
#include <algorithm> /// for std::sort function
#include <cassert> /// for std::assert
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <vector> /// for std::vector

View File

@@ -1,28 +1,34 @@
/**
* @file
* @brief Implementation of [Saddleback Algorithm](https://www.geeksforgeeks.org/saddleback-search-algorithm-in-a-2d-array) for 2D arrays.
* @brief Implementation of [Saddleback
* Algorithm](https://www.geeksforgeeks.org/saddleback-search-algorithm-in-a-2d-array)
* for 2D arrays.
*
* @details
* Saddleback Algorithm is an algorithm that searches 2D array in linear time,
* i.e, O(m + n), where m is number of rows and n is number of columns of 2D array. Also, each row and
* column of the matrix should be sorted beforehand for this algorithm to work.
* i.e, O(m + n), where m is number of rows and n is number of columns of 2D
* array. Also, each row and column of the matrix should be sorted beforehand
* for this algorithm to work.
*
* @author [Hashir Niazi](https://github.com/HashirGJ8842)
*/
#include <cassert> /// for assert
#include <iostream> /// for io operations, and std::pair
#include <vector> /// for std::vector
#include <cassert> /// for assert
#include <cstdint> /// for integral typedefs
#include <iostream> /// for io operations, and std::pair
#include <vector> /// for std::vector
/** \namespace search
* \brief Algorithms for searching
*/
namespace search {
/** \namespace saddleback
* \brief Function for implementing [Saddleback Algorithm](https://www.geeksforgeeks.org/saddleback-search-algorithm-in-a-2d-array).
* \brief Function for implementing [Saddleback
* Algorithm](https://www.geeksforgeeks.org/saddleback-search-algorithm-in-a-2d-array).
*/
namespace saddleback {
/**
* This function implements [Saddleback Algorithm](https://www.geeksforgeeks.org/saddleback-search-algorithm-in-a-2d-array),
* This function implements [Saddleback
* Algorithm](https://www.geeksforgeeks.org/saddleback-search-algorithm-in-a-2d-array),
* on a sorted 2D array, and finds the location of the element needed to search
* @param matrix 2D matrix which is sorted on the basis of rows and columns
* @param element element to be searched
@@ -30,16 +36,17 @@ namespace saddleback {
* element is present.
* @return An std::pair with (0, 0), if the element is not present.
*/
std::pair<uint32_t, uint32_t> saddleback(std::vector<std::vector<int32_t>> matrix,
int32_t element) {
std::pair<uint32_t, uint32_t> saddleback(
std::vector<std::vector<int32_t>> matrix, int32_t element) {
uint32_t left_index = 0;
uint32_t right_index = matrix[0].size() - 1; // Start from top right corner
while (left_index < matrix.size()) { // Exit once the value of indexes get out of range.
while (left_index <
matrix.size()) { // Exit once the value of indexes get out of range.
if (element ==
matrix[left_index]
[right_index]) { // If value on this position of matrix is
// equal to element, return (row, column).
return std::make_pair(left_index+1, right_index+1);
return std::make_pair(left_index + 1, right_index + 1);
} else if (element >
matrix[left_index]
[right_index]) { // Else if value on this position of
@@ -51,14 +58,15 @@ std::pair<uint32_t, uint32_t> saddleback(std::vector<std::vector<int32_t>> matri
[right_index]) { // Else if value on this position of
// matrix is greater than the
// element, move down.
if(!right_index)
if (!right_index)
break;
else --right_index;
else
--right_index;
}
}
return std::make_pair(
0, 0); // If the program reaches here, that means one of the index
// went out of index, hence no element present.
// went out of index, hence no element present.
}
} // namespace saddleback
} // namespace search
@@ -69,15 +77,16 @@ std::pair<uint32_t, uint32_t> saddleback(std::vector<std::vector<int32_t>> matri
*/
static void test() {
std::vector<std::vector<int32_t>> matrix = {{1, 10, 100, 1000, 10000},
{2, 20, 200, 2000, 20000},
{3, 30, 300, 3000, 30000},
{4, 40, 400, 4000, 40000},
{5, 50, 500, 5000, 50000}};
{2, 20, 200, 2000, 20000},
{3, 30, 300, 3000, 30000},
{4, 40, 400, 4000, 40000},
{5, 50, 500, 5000, 50000}};
std::pair<uint32_t, uint32_t> not_found = std::make_pair(0, 0);
std::pair<uint32_t, uint32_t> test_answer;
// Test 1
std::pair<uint32_t, uint32_t> answer1 = search::saddleback::saddleback(matrix, 123);
std::pair<uint32_t, uint32_t> answer1 =
search::saddleback::saddleback(matrix, 123);
assert(not_found == answer1);
// Test 2
answer1 = search::saddleback::saddleback(matrix, 0);
@@ -101,6 +110,6 @@ static void test() {
* @returns 0 on exit
*/
int main() {
test(); // execute the tests
test(); // execute the tests
return 0;
}

View File

@@ -26,6 +26,7 @@
*/
#include <cassert> /// for assert
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <vector> /// for std::vector