CRJ巨佬gjd算法伪代码

Posted Frank

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRJ巨佬gjd算法伪代码相关的知识,希望对你有一定的参考价值。

为了方便记忆,因此给出为代码

 

定义 

reset(N)

flag=1,len = 0

 

赋值(LL) :

while a不为零

  N[i] = a[i]个位

len = i

 

赋值(string a):

len = a.len

for 0 -> len

    N[i] = a[len-1-i] - ‘0‘

 

加法:

len = maxlen(a,b) + 1

tp = 0;

for 0 -> N

    N[i] = a[i]+b[i] + tp

    tp = N[i] / 10

    N[i] %= 10

去前导零

 

减法:

if(a < b) 交换,输出负值

len = maxlen(a, b)

for 0 -> N

     N[i] = a[i] - b[i]

     if N[i] < 0  then N[i + 1]--,  N[i] + 10;

去前导零

 

乘法:

len = lena+lenb

for i = 1 -> lena

    for j = 1 -> lenb

    N[i + j] = Na[i] * Nb[j]

         N[i + j + 1] = N[i + j] /10

         N[i + j] %= 10

去前导零

 

小于比较:

if len 不相等 then len小的

else  for 0 -> len

    if  a[i] < b[i] then a小

 

输出:

if 负数 then 输出-

else for len-1 -> 0 out N[i]

 

以上是关于CRJ巨佬gjd算法伪代码的主要内容,如果未能解决你的问题,请参考以下文章

SPFA算法的伪代码

Bellman-Ford算法的伪代码

论文伪代码怎么写

算法中的伪代码语法格式 - 算法实现表达利器

A*寻路算法伪代码

什么是伪代码?