搜索资源列表
JavaexErciseSource
- 学习Java的过程中所做的联系的汇总 字符串的输入、字符串转化到整数、异常处理、流 最大公约数和最小公倍数 字符ASCII码的比较 一元二次方程根 求根公式 窗口类、按钮类、窗口中对象(如按钮)的布局、事件、绘图(Paint) 复选框、单选框、列表框、下拉选择框 菜单类、对话框类 绘图、绘图函数 按钮类、标签类 -learning through the process linked to the summary of the input string, the string
number_theory_c++
- 数论算法库 C++ 语言实现 代码内容 数论算法库,包括以下算法: 欧几里德算法求a,b的最大公倍数 扩展的欧几里德算法,求出gcd(a,b)和满足gcd(a,b)=ax+by的整数x和y 求解模线性方程 ax ≡ b (mod n) 其中n>0 求解模线性方程组(中国余数定理) 模取幂运算 计算a^b mod n (a,b可能很大) Miller-Rabin随机性素数测试算法
12234
- 解决排列组合问题的通用算法,自然数得拆分,求最大公约数的算法-permutations and combinations to solve problems common algorithm, and a few in the resolution, the common denominator for the algorithm
huibian
- 这是用masm32编写的一个用于求两个数的最大公约数和最小公倍数的程序,并且有可视化的界面。-masm32 used for the preparation of a request for the two majors and least common multiple procedures, and a visual interface.
qiuzuidagongyueshuhezuixiaogongbeishu
- 函数求两个整数的最大公约数和最小公倍数的源程序-integer function for the two majors and the least common multiple source files
Gcd_EuclideanExtendedEuclidean
- 实现《现代密码学理论与实践》中,求最大公约数的Euclidean算法和extended Euclidean算法。程序不大,但希望给像我这样的入门者提供一些方便。
EUCLID
- 本程序完成了欧几里得算法求最大公约数、扩展欧几里得算法求乘法逆元和素性检验判断输入的数是否为素数
5
- 第五章练习题,包括哥德巴赫猜想,汉英对照星期,pi的近似值,暂停时间秒的过程,利用计算阶乘的自定义函数求e,5个人岁数,斐波那契数列,最大公约数,最小公倍数
zuidagongyueshu
- 求最大公约数,虽然有些简单,希望对大家有帮助。
_PAGE_REPL14800210182002
- 页面置换求最大公约数,希望对大家有帮助。算法简单易懂
最大值及最大公约数
- 求最大值及最大公约数。这是我初学C语言的一个源程序,希望对初学者有所帮助。-This program is going to get the maxium number and GCD.This source is the result of my first learning C,I hope it can be helpful for the first learner.
gongyueshugongbeishu
- 求最大公约数和最小公倍数的源代码。很简短的求法-Seek the common denominator and least common multiple of the source code. Very brief method
123
- 16位汇编语言编写的求两数的最大公约数和最小公倍数程序。-16 seeking the two greatest common divisor and least common multiple program written in assembly language.
yueshu
- 汇编实现利用欧几里得算法,求最大公约数,同时求出最新公倍数-Assembly to achieve the Euclidean algorithm, greatest common divisor, and find the latest common multiple
142
- 求两个整数的最大公约数和最小公倍数,并编写主函数调用这两个子函数,输出结果,两个整数由键盘输入。-#include<iostream> using namespace std int x(int a,int b) //x为求最大公约数的函数 { int t=0 if(a>b)t=b else t=a for(int i=t i>=1 i--)if(a i==0&&b i==0)break return i
greatest-divisor-least-multiple
- 求最大公约数和最小公倍数的一个应用,该文件主要目的是实现最大公约数和最小公倍数的代码-Find the greatest common divisor and least common multiple
cPP
- 员工管理系统,简单大数问题,对称三位素数,欧几里得求最大公约数(差),深度优先搜索-Staff management system, the problem of large numbers is simple, symmetrical three primes, Euclid find the greatest common divisor (poor), depth-first search
Find-the-greatest-common-divisor
- 求最大公约数的C编程语言,有需要的可以-Find the greatest common divisor
zuidagongyueshu
- MIPS 汇编实现求最大公约数 用mars运行-MIPS assembler achieve greatest common divisor run by mars
gcd
- 求最大公约数是很多程序中需要出现的模块,本程序实现了欧几里得算法,计算最大公约数-Seeking the common denominator is the module needs to appear in many programs, the program implements the Euclidean algorithm to calculate the greatest common divisor