모듈:NumberTheory: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
백괴게임>Riemann 잔글편집 요약 없음 |
백괴게임>Riemann 잔글편집 요약 없음 |
||
29번째 줄: | 29번째 줄: | ||
end | end | ||
function _gcd(args) | function p._gcd(args) | ||
gc = math.abs(args[1]) | if args[1] == nil then | ||
return 1 | |||
else | |||
gc = math.abs(args[1]) | |||
if args[2] == nil then | |||
return gc | |||
else | |||
local i = 2; | |||
while args[i] ~= nil do | |||
local a = gc; | |||
local b = math.abs(args[i]); | |||
local c; | |||
while c ~= 0 do | |||
c = a % b; | |||
a = b; | |||
b = c; | |||
end | |||
gc = a | |||
i = i + 1 | |||
end | |||
return gc | |||
end | end | ||
end | end | ||
end | end | ||
2018년 3월 1일 (목) 20:37 판
이 모듈에 대한 설명문서는 모듈:NumberTheory/설명문서에서 만들 수 있습니다
local getArgs = require('모듈:Arguments').getArgs
local p = {}
function _powerMod( root, expo, modulo )
local BaseConvert = require( '모듈:BaseConvert' );
local power = 1;
local expo2 = BaseConvert.convert({n = expo, base = 2});
local i;
for i = 1, #expo2 do
power = (power * power) % modulo;
power = power * (root ^ expo2:sub(i,i)) % modulo;
end
return power
end
function p.powerMod(frame)
local args
if frame == mw.getCurrentFrame() then
args = frame.args
else
args = frame
end
local root = args.root
local expo = args.expo
local modulo = args.modulo
return _powerMod( root, expo, modulo )
end
function p._gcd(args)
if args[1] == nil then
return 1
else
gc = math.abs(args[1])
if args[2] == nil then
return gc
else
local i = 2;
while args[i] ~= nil do
local a = gc;
local b = math.abs(args[i]);
local c;
while c ~= 0 do
c = a % b;
a = b;
b = c;
end
gc = a
i = i + 1
end
return gc
end
end
end
function p.gcd(frame)
local args = getArgs(frame)
return _gcd(args)
end
return p