`Supimo` `Algorithm` 算法中自定义的术语缩写/概念 您所在的位置:网站首页 be缩写形式 `Supimo` `Algorithm` 算法中自定义的术语缩写/概念

`Supimo` `Algorithm` 算法中自定义的术语缩写/概念

2023-01-22 03:49| 来源: 网络整理| 查看: 265

Contents 图论概念某点的搜索图某点的极限路径 数论概念裴蜀方程 术语缩写 Redirect-ID `1`

图论 概念 某点的搜索图

A Search-Graph of a point a a a (a点的搜索图) ( V , E ) (V, E) (V,E) where a a a can reach to any point ∀ x ∈ V \forall x \in V ∀x∈V and E E E is the edges of the Induced-Sub-Graph G [ V ] G[V] G[V]. . + When we perform a BFS/DFS from the start-point a a a, actually, we are traversing on the Search-Graph of a a a.

某点的极限路径

A Limited-Path of a point s s s (s点的极限路径) is a path s → . . . → t s \to ... \to t s→...→t where each time we traverse an edge a → b a\to b a→b then delete this edge a → b a\to b a→b (if in the Undirected-Graph, then delete its corresponding-edge a − b a-b a−b), until we arrive at the point t t t which has no adjacent-point to traverse further. . + Finally, in the new graph (all edges in the path has been deleted), the O u t [ t ] = 0 Out[t] = 0 Out[t]=0 (if in the Undirected-Graph, then D e g [ t ] = 0 Deg[t] = 0 Deg[t]=0); . + It can be got by DFS using the below method:

void DFS( int a){ for( `(a-x)` : all adjacent-edges of `a`){ path.push_back( `(a-x)`); delete this edge `a-x` from the graph; DFS( x); } } 数论 概念 裴蜀方程

Bezout-Equation is the form a x + b y = c ax + by = c ax+by=c where a , b , c ∈ Z    ∧    ¬ ( a = b = 0 ) a,b,c \in Z \ \ \land \ \ \neg(a=b=0) a,b,c∈Z  ∧  ¬(a=b=0) are Constants, and x , y ∈ Z x,y \in Z x,y∈Z are Unknowns; . A pair ( x 0 , y 0 ) (x_0, y_0) (x0​,y0​) satisfying the above-equation is called a Solution;

术语缩写

EulerFunc: Euler-Function (欧拉函数)

--

MulInv: Multiplicative-Inverse (乘法逆元)

--

LCE: Linear-Congruence-Equation (线性同余方程) a x ≡ b ( % M ) ax \equiv b (\% M) ax≡b(%M)

--

BinExp: Binary-Exponentiation (快速幂)

--

GCD: Greatest-Common-Divisor (最大公约数)

--

ExGCD: Extended-GCD (拓展GCD算法)

--

LCM: Least-Common-Multiple (最小公倍数)

Redirect-ID 1


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有