搜索资源列表
Longgetuta
- 龙格库塔算法,用于拟合GLONASS的星历数据,15分钟精度在5米之内,可以向前推,也可以向后推!-Runge - Kutta method for fitting the GLONASS satellite ephemeris data, the accuracy of 15 minutes within five meters, can move forward, but also can push back!
hanio1
- 四柱汉诺塔问题的求解程序.解题思路:如a,b,c,d四柱. 要把a柱第n个盘移到目标柱子(d柱),先把上层 分两为两部份,上半部份移到b柱,下半部分移到c柱,再把第n盘移到 目标柱子,然后,c柱盘子再移到目标柱子,再把b柱盘子移到目标柱子. 细节地方: 上半部份移到b柱时,它的中间变量柱子是有二选一的.而下半部分 移到c柱时,它的中间变量柱子只有一个(因为一个柱子已被上半部份 占了).b,c也移到目标柱子时同理。-4-Tower of the solution pro
cmcm98b
- 98年全国大学生数学建模竞赛B题“水灾巡视问题”,是一个推销员问题,本题有53个点,所有可能性大约为exp(53),目前没有好方法求出精确解,既然求不出精确解,我们使用模拟退火法求出一个较优解,将所有结点编号为1到53,1到53的排列就是系统的结构,结构的变化规则是:从1到53的排列中随机选取一个子排列,将其反转或将其移至另一处,能量E自然是路径总长度。具体算法描述如下:步1: 设定初始温度T,给定一个初始的巡视路线。步2 :步3 --8循环K次步3:步 4--7循环M次步4:随机选择路线的一段
HanoiProblem
- 汉诺塔问题: 有ABC三根柱子,A柱上有n个大小不等的盘子,大盘在下,小盘在上。要求将所有的盘子从A柱搬到C柱上,每次只能搬动一个,搬动过程中可以借助另一个柱子,但是必须满足大盘在下,小盘在上。 -Tower of Hanoi problem: There are three pillars ABC, A column has n different sizes of plates, the broader market in the next, small cap on. Requir
TowerHanoiproblem
- 约19世纪末,在欧州的商店中出售一种智力玩具,在一块铜板上有三根杆,最左边的杆上自上而下、由小到大顺序串着由64个圆盘构成的塔。目的是将最左边杆上的盘全部移到右边的杆上,条件是一次只能移动一个盘,且不允许大盘放在小盘的上面。这就是著名的汉诺塔问题-About the late 19th century, in Europe the sale of stores in an intellectual toys, there is a piece of copper rod 3, the far l
Newton
- 可以计算非线性方程的近似解,通过牛顿迭代法逐渐接近真值。-Can calculate the approximate solution of nonlinear equations by Newton' s iterative method move closer to true value.
Colvolutions
- If we want to find a specified pattern in an image, we can move this pattern as a template over the image, and find where the lokal image correlates with the template. This is called template matching.-If we want to find a specified pattern in an ima
16x16
- 16x16点阵显示+两种显示效果 可以左右移动,包含仿真文件可以观察显示效果-16x16 dot matrix display can show+ two move around, including the simulation files can observe the display
FiveDirectionPad_Algo
- 此作業需使用Backtracking algorithm 從第一格開始,從1到9依序測試是否可以填入,若本來此格已有數字,則直接往下一格走。若可以填入( if(promising()) )則填入該數字並且往下一格移動繼續填,若此格沒有可填入的數字時,則結束該格的動作,回到上一格去測試剩下的可能結果。若已經填完( if(solution is found) ),則可能解+1,然後回到前面再繼續尋找接下來的可能解。直到全部可能的數字組合都試完之後,程式結束,所有可能解的個數也會被找到。需要印出的
2
- 函数ReadDat( )实现从文件IN.DAT中读取一篇英文文章存入到字符串数组xx中;请编制函数StrOR( ),其函数的功能是:以行为单位依次把字符串中所有小写字母o左边的字符串内容移到该串的右边存放,然后把小写字母o删除,余下的字符串内容移到已处理字符串的左边存放,之后把已处理的字符串仍按行重新存入字符串数组xx中。最后main()函数调用函数WriteDat()把结果xx输出到文件OUT5.DAT中。-Function ReadDat () implementation from the
Mysteryproblem
- 重排九宫是一个古老的单人智力游戏。据说重排九宫起源于我国古时由三国演义故事“关羽义释曹操”而设计的智力玩具“华容道”,后来流传到欧洲,将人物变成 数字。原始的重排九宫问题是这样的:将数字1~8按照任意次序排在3×3的方格阵列中,留下一个空格。与空格相邻的数字,允许从上,下,左,右方向移动到 空格中。游戏的最终目标是通过合法移动,将数字 1~8 按行排好序。在一般情况下,n2-1 谜问题是将数字 1~n2-1 按照任意次序排在n×n的方格阵列中,留下一个空格。允许与空格相邻的数字从上,下,左,右
robot
- 取各障碍物顶点连线的中点为路径点,相互连接各路径点,将机器人移动的起点和终点限制在各路径点上,利用Dijkstra算法来求网络图的最短路径,找到从起点P1到终点Pn的最短路径,由于上述算法使用了连接线中点的条件,不是整个规划空间的最优路径,然后利用遗传算法对找到的最短路径各个路径点Pi (i=1,2,…n)调整,让各路径点在相应障碍物端点连线上滑动,利用Pi= Pi1+ti×(Pi2-Pi1)(ti∈[0,1] i=1,2,…n)即可确定相应的Pi,即为新的路径点,连接此路径点为最优路径。-Ta
SPHYSICS_2D_v1.0.003
- SPH2D CODE Smoothed-particle hydrodynamics (SPH) is a computational method used for simulating fluid flows. It has been used in many fields of research, including astrophysics, ballistics, volcanology, and oceanography. It is a mesh-free Lagrangia
SPHYSICS_3D_v1.0.003
- SPH 3D Smoothed-particle hydrodynamics (SPH) is a computational method used for simulating fluid flows. It has been used in many fields of research, including astrophysics, ballistics, volcanology, and oceanography. It is a mesh-free Lagrangian
banshan
- 设有n座山,计算机与人作为比赛的双方,双方轮流搬山。规定每次搬山的数目不能超过k座,谁搬最后一座谁输。游戏开始时,计算机请人输入山的总数(n)和每次允许搬山的最大数目(k)。然后请人先开始,人输入了需要搬走的山的数目后,计算机马上输出它搬多少座山,并提示尚余多少座山。双方轮流搬山直到最后一座山搬完为止。计算机显示谁是赢家,并问人是否要继续比赛。若人不想玩了,可以输入山的总数为0,计算机便会告诉人共完了几局,双方胜负如何。-With n mountains, computers and peopl
4_1
- move in vb it is simple to use
MLS
- 用C++编写的最小移动二乘车程序,经过简单处理后可以直接移植到所需要的工程计算中-Written in C++, the smallest move two car program, after a simple treatment can be directly transplanted to the required engineering calculations
lispChinesetower
- 编写LISP函数解决Hanoi Tower(汉塔)问题。问题如下:梵塔内有A,B,C三个柱子,开始时A柱上有n个盘子,盘子大小不等,大的在下,小的在上。要把这n个盘子从A柱移到B柱,每次只允许移动一个盘子,且在移动过程中在3个柱子上都始终保持大盘在下,小盘在上。在移动过程中可以利用C柱,要求程序输出移动的步骤。-Write LISP function to solve the problem of Hanoi is Tower (Chinese tower). The questions are
Hanoi
- 有三根柱子A,B,C,A柱子上有N个盘子,从小到大依次叠放,要求把A上的盘子都移到C上,B可以作为临时存放,移动的时候必须始终遵循小盘子在大盘子上面,且每次只能移动一个盘子。-There are three pillars A, B, C, A with their N dishes, from small stacked in turn requires the plates are A move to C, B can be used as A temporary storage, move
greedyselector
- 算法分析与设计,贪心算法解决活动安排问题,从data.txt文件中读取所要安排的活动的数量和活动的开始和介绍时间,输出选择的活动,在安排活动的过程中不移动活动的顺序。-Number of algorithm analysis and design, greedy algorithm for solving activities arrangements, from the the data.txt file read to arrange activities and the activitie