搜索资源列表
queen
- N皇后问题,N皇后放置过程的现实。 由八皇后问题扩展开来,在N*N的棋盘上摆放N个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上。求可能的解决方案,并显示每一种解决方案的皇后放置过程。-N Queen' s problem, N Queen placed the reality of the process. Expansion by opening eight to question Queen' s, at the N* N chessboard
1
- N皇后问题的回溯算法 N皇后问题的回溯算法 -N Queen' s problem backward algorithm N Queen' s problem backward algorithm
1
- 任务:参加运动会有n个学校,学校编号为1……n。比赛分成m个男子项目,和w个女子项目。项目编号为男子1……m,女子m+1……m+w。不同的项目取前五名或前三名积分;取前五名的积分分别为:7、5、3、2、1,前三名的积分分别为:5、3、2;哪些取前五名或前三名由学生自己设定。(m<=20,n<=20) 功能要求: 1)可以输入各个项目的前三名或前五名的成绩; 2)能统计各学校总分, 3)可以按学校编号或名称、学校总分、男女团体总分排序输出; 4)可以按学校编号查询学
robot
- 机器人的初始坐标为(x,y),(x轴为东西,y为南北)小明的控制的命令如下n,s,w,e分别表示向北,向南,向西,向东走一步,一个步长为一个单位长度。 Input 多组测试数据。每次数据一行,格式为 x y control。x,y为整数(绝对值不超过1000000)表示机器人的初始坐标,control为一个不包含空格的由四个方向字母所组成的控制字串,长度不超过1000 Output 第i组数据输出前,请先输出“Case I:”. 机器人在执行完命令后的坐标位置
flow7
- 有限元求解2维n-s方程 The program is executable. To solve a particular problem, you need to include routines that define the shape of the region and the boundary conditions. Problems that are already written up include - finite element method to solve the ste
F-STEPPER-MOTOR-INTERFAC1-n
- Stepper motor using 8085. It will be helpful to Engineering student s project. Friends please make use of it. By your well wisher Arunachalam from Tamilndau
Introduction-to-Netscape-Compose
- Introduction to Netscape Compose Hư ớ ng dẫ n sử dụ ng chư ơ ng trình Netscape Compose-Introduction to Netscape Compose Hư ớ ng dẫ n sử dụ ng chư ơ ng trình Netscape Compose
n
- 求一个集合的第N个元素!一个集合S中的第一个元素是1,如果a ∈ S 则有 2 * a + 1∈ S , 3 * a + 1 ∈ S 在集合中所有元素由你到大排列,求第n个数是多少。-Seek a set of N elements
Erlang-N-queen
- 基于Erlang语言平台解决N皇后问题,通过对原有基于Erlang的N皇后问题算法进行分析,提出了一种新的改进算法。该算法利用位运算操作,并且在每一行只搜索可以放置皇后的位置。通过理论分析与实验验证,证明该算法能明显提升N皇后问题算法效率。-Solve the N-queens problem, based on the Erlang language platform through the original N-queens problem algorithm based on Erlang
N-lines-before-output-Triangle
- 一、 输入一个正整数n,通过程序输出杨辉三角的前n行,并输入一个正整数m,若m在杨辉三角中存在,输出所在位置的行列。 (1) 输入正整数n,输出杨辉三角形的前n行,1<n<20。要求至少给出四种解法:不使用任何数组,只使用一维数组,只使用二维数组,使用递归。 (2) 输入正整数m, 若m在杨辉三角形中存在,输出所在位置的行列编号。-Enter a positive integer n, the first n rows of Pascal' s Triangle pro
DC-and-BIAS
- 计算N-S效率系数及水量平衡,评估模拟效果-For N-S and bias calculation
SPH_6_add-surface-tension
- 使用sph方法求解NS方程,在此程序中考虑了表面张力的影响-this code solves N-S equation which uses SPH method,further more it consist of the surface tension part。
exe
- 求三角形面积 判断三角形的种类以计算面积-#include<stdio.h> #include<math.h> main() { double a,b,c,p,S,i printf("Input a,b,c\n") scanf(" lf lf lf",&a,&b,&c) if(a+b>c&&a+c>b&&b+c>a){ p=(a+b+c)/2 S=sqrt((p-a)*(p-b)*(p-c)
001Lonely-Senter
- 对于每一组输入数据,其第一行为三个整数 N、S 和 Q。其中 N(2<=N<=100) 表示环中站的个数。S(1<=S<=100) 表示货车的最大容量,即货车同时可以装载多少箱货物。而 Q(1<=Q<=100) 表示 B 平台所能放置的货物的总数,假定该系统中所有货运站 B 平台的最大容量都相同。 从第二行往后一共有 N 行,每行一的第一个数字代表该站 B 平台上货物的总数,之后的每个数字代表每箱货物运送到哪个站。 对于每组输入,你需要在独立的一行中输
jinzhizhuanhuan
- 【问题描述】编写函数itob(n,s,b),用于把整数n转换成以b为基的字符串并存储到s中. 编写程序,使用函数itob(n,s,b)将输入的整数n,转换成字符串s,将s输出.转换后的字符串从最高的非零位开始输出。如果n为负数,则输出的字符串的第一个字符为’-’。b为大于1小于37的任意自然数值。当b=2时,输出字符只可能是’0’和’1’;当b=16时,输出字符串中可能含有字符为’0’-’9’,’a’-’f’(字母以小写输出)。b还可以是其它数值。比如输入n=33,b=17,则输出33的17进制
cavity
- 平板驱动的方腔流程序 It is the code for immersed boundary method based on the incompressible N-S equation solver by use of the projection method, which is proposed by Orlandi et al.(1992), JCP -It is the code for immersed boundary method based on the i
UG-GRX插件
- 特别的好用是恩施 水哦好厉害啦 暗示法犯法(AFJAA JA hjafl jfahfiahlan;s fahnanfl;ahfnalsf)
n-s
- ELCENTRO EARTHQUAKE DATA FOR USE
sp163
- You can achieve data classification and regression pattern recognition, Calculating a target and ocean echo power spectral density, D-S evidence theory data fusion.
Datcom99_input_BFM
- A input file for Datcom99.It's a model of BFM.BFM is usually used to verify the numerical method of N-S Equation.Also ,I put my result in the zip.(A input file for Datcom99.It's a model of BFM.BFM is usually used to verify the numerical method of N-S