搜索资源列表
knight
- 在一个n*n个方格的国际象棋棋盘上,马(骑士)从任意指定方格出发,按照横1 步竖2 步,或横2 步竖1步的跳马规则,走遍棋盘的每一个格子,且每个格子只走1次。这样的跳马步骤称为1 个成功的骑士征途。例如,当n=5 时的1 个成功的骑士征途如下图所示。 1 2 3 4 5 1 25 14 1 8 19 2 4 9 18 13 2 3 15 24 3 20 7 4 10 5 22 17 12 5 23 16 11 6 21 算法设计: 对于给定的n和n*n方格的起始位
chaoliu
- 极坐标法的matlab程序,采用了N-R算法-Polar coordinate method matlab program
powerflow-(1)
- 本程序是matlab编程,采用了N-R算法中的极坐标法-This program is matlab programming, NR algorithm using polar coordinates
quanpailie
- 输出n个自然数中以r个数全排列,回溯法也称为试探法,该方法首先暂时放弃关于问题规模大小的限制,并将问题的候选解按某种顺序逐一枚举和检验。在回溯法中,放弃当前候选解,寻找下一个候选解的过程称为回溯。-The output n natural numbers r the number of full array backtracking also called heuristics, this method first temporarily abandon the restrictions on
abc
- 投掷六个骰子能投掷出多少种排列组合呢? 如1 2 3 4 5 6 和 6 5 4 3 2 1是同一种组合。 问题可以转化为:n个相同小球放入r个相异盒子中,允许空盒。 即求解不定方程 x1+x2+x3+ ... + xr = n 的非负整数解(x1, x2, x3, ..., xr),0<= Xi <= n 令yi=xi+1,转化为 y1+y2+..+yr = n+r 此时 1<= yi <=n+1 相当于 n+r 个小球分成 r 堆,有多少种分法的问
Delphi_845716
- Delphi数组例子,Delphi使用回溯法找出n个自然数中取r个数的不同位组合,你可以指定自然数和数组元素,然后点击“分组”按钮,即可看到分组效果。 -Delphi array of examples, Delphi use backtracking to find different bit combinations of n natural numbers taken r number, you can specify the number and nature of array el
Multigrid-method
- 用多重网格法解非线性偏微分方程,假定N=4时为第0层l为输入的层数 r为MGM在在J-1层调用的次数-With multi-grid method for solving nonlinear partial differential equations, assuming N = 4 when the input layer 0 l layers r for MGM in the number of J-1 layer calls
test2
- MATLAB ,N-R迭代法,散斑应力强度因子(MATLAB, N-R iterative method, speckle stress intensity factor)
1
- 将被排序的记录数组R[1..n]垂直排列,每个记录R看作是重量为R.key的气泡。根据轻气泡不能在重气泡之下的原则,从下往上扫描数组R:凡扫描到违反本原则的轻气泡,就使其向上"飘浮"。如此反复进行,直到最后任何两个气泡都是轻者在上,重者在下为止。(The ordered array of records R[1..N] is vertically arranged, each recording R as a bubble of weight R.key. According