代码搜索结果
找到约 10,000 项符合
Algorithm 的代码
javascript_euler_algorithm.pax
JavaScript_Euler_algorithm.js
basic_euler_algorithm.pax
Basic_Euler_Algorithm.pb
javascript_euler_algorithm.js
// Euler algorithm
function Cycle(InitV, A){
var P, Stack, result, U, V;
result = null;
Stack = [InitV, null];
while (Stack != null) {
V = Stack[0];
P = & A[V];
if (P !=
c_euler_algorithm.pc
// Euler algorithm
variant Cycle(InitV, A){
variant P, Stack, result;
int U, V;
result = NULL;
Stack = [InitV, NULL];
while (Stack != NULL) {
V = Stack[0];
P = & A[V];
basic_euler_algorithm.pb
' Euler algorithm
Function Cycle(InitV, A)
Dim P, Stack, U, V, result
result = NULL
Stack = [InitV, NULL]
Do Until Stack = NULL
V = Stack(0)
P = AddressOf A(V)
If P N
pascal_euler_algorithm.pax
Pascal_Euler_algorithm.pp
algorithm.txt.svn-base
1. Compression algorithm (deflate)
The deflation algorithm used by gzip (also zip and zlib) is a variation of
LZ77 (Lempel-Ziv 1977, see reference below). It finds duplicated strings in
the input
homology_continuation_algorithm.m
%% N 为积分部数,h 为积分步长,其值视计算精度而定
%% x0 为初始值,可任意给定
%% Equfun(x)为非线性方程组表达式(列向量),
%% Jacobfun(x)为雅可比矩阵
N=100;
h=1/N;
x0=[0 0 0]';
x=x0;
%format long
f=Equfun(x);
b=-h*f;
for i=1:N
A=J