⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gcd_lcm.hpp

📁 CGAL is a collaborative effort of several sites in Europe and Israel. The goal is to make the most i
💻 HPP
字号:
// Copyright (C) 2000 Stephen Cleary//// Distributed under the Boost Software License, Version 1.0. (See// accompanying file LICENSE_1_0.txt or copy at// http://www.boost.org/LICENSE_1_0.txt)//// See http://www.boost.org for updates, documentation, and revision history.#ifndef BOOST_POOL_GCD_LCM_HPP#define BOOST_POOL_GCD_LCM_HPPnamespace boost {namespace details {namespace pool {// Greatest common divisor and least common multiple//// gcd is an algorithm that calculates the greatest common divisor of two//  integers, using Euclid's algorithm.//// Pre: A > 0 && B > 0// Recommended: A > Btemplate <typename Integer>Integer gcd(Integer A, Integer B){  do  {    const Integer tmp(B);    B = A % B;    A = tmp;  } while (B != 0);  return A;}//// lcm is an algorithm that calculates the least common multiple of two//  integers.//// Pre: A > 0 && B > 0// Recommended: A > Btemplate <typename Integer>Integer lcm(const Integer & A, const Integer & B){  Integer ret = A;  ret /= gcd(A, B);  ret *= B;  return ret;}} // namespace pool} // namespace details} // namespace boost#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -