diff --git a/2024/07/cpp_algorithms2/.gitignore b/2024/07/cpp_algorithms2/.gitignore new file mode 100644 index 0000000..104d52a --- /dev/null +++ b/2024/07/cpp_algorithms2/.gitignore @@ -0,0 +1,2 @@ +cmake-build* +CMakeUserPresets.json \ No newline at end of file diff --git a/2024/07/cpp_algorithms2/CMakeLists.txt b/2024/07/cpp_algorithms2/CMakeLists.txt new file mode 100644 index 0000000..24e13f3 --- /dev/null +++ b/2024/07/cpp_algorithms2/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.28) +project(cpp_algorithms2) + +set(CMAKE_CXX_STANDARD 17) + +find_package(Boost REQUIRED) + +add_executable(cpp_algorithms2 main.cpp) +target_include_directories(cpp_algorithms2 PUBLIC ${Boost_INCLUDE_DIRS}) +target_link_libraries(cpp_algorithms2 boost::boost) diff --git a/2024/07/cpp_algorithms2/conanfile.py b/2024/07/cpp_algorithms2/conanfile.py new file mode 100644 index 0000000..16db93e --- /dev/null +++ b/2024/07/cpp_algorithms2/conanfile.py @@ -0,0 +1,12 @@ +from conan import ConanFile +from conan.tools.cmake import cmake_layout + +class AlgoBoostConan(ConanFile): + settings = "os", "compiler", "build_type", "arch" + generators = "CMakeDeps", "CMakeToolchain" + + def requirements(self): + self.requires("boost/1.85.0") + + def layout(self): + cmake_layout(self) diff --git a/2024/07/cpp_algorithms2/main.cpp b/2024/07/cpp_algorithms2/main.cpp new file mode 100644 index 0000000..1e5e9cb --- /dev/null +++ b/2024/07/cpp_algorithms2/main.cpp @@ -0,0 +1,47 @@ +#include +#include +#include +#include + +int main() { + std::cout << "Hello, World!" << std::endl; + + std::vector numbers = {1, 2, -1, 3, -2, 4}; + + numbers.erase(std::remove_if( + numbers.begin(), + numbers.end(), + [](int x) { return x < 0; }), + numbers.end()); + + auto sum = 0; + for (auto it = numbers.begin(); it != numbers.end(); it++) { + sum += *it; + } + + std::cout << "Sum is: " << sum << "." << std::endl; + + auto res = std::accumulate( + numbers.begin(), + numbers.end(), + 1, + [](int a, int b) { return a * b; }); + + std::cout << "Multiplication is: " << res << "." << std::endl; + + std::vector palindrome_vec = {1, 2, 3, 2, 1}; + + if (boost::algorithm::is_palindrome(numbers)) { + std::cout << "Vec 1 is palindrome" << std::endl; + } else { + std::cout << "Vec 1 is not palindrome" << std::endl; + } + + if (boost::algorithm::is_palindrome(palindrome_vec)) { + std::cout << "Vec 2 is palindrome" << std::endl; + } else { + std::cout << "Vec 2 is not palindrome" << std::endl; + } + + return 0; +}