搜索结果
找到约 2,765 项符合
n-sensors 的查询结果
文件格式 用贪心算法解题: 设n是一个正整数。现在要求将n分解为若干互不相同的自然数的和
用贪心算法解题: 设n是一个正整数。现在要求将n分解为若干互不相同的自然数的和,且使这些自然数
的乘积最大。
数学计算 采用LasVegas概率算法高效解决N皇后问题
采用LasVegas概率算法高效解决N皇后问题,并统计其成功与失败的概率,这是中国科技大学的高级算法设计的设计
汇编语言 输入一个正整数n,输出自然数数列前n项和
输入一个正整数n,输出自然数数列前n项和
串口编程 UATR0 试验,从串口以9600,N,1的模式循环输出16进制的
UATR0 试验,从串口以9600,N,1的模式循环输出16进制的
嵌入式/单片机编程 UATR0 试验,从串口以9600,N,1的模式循环输出16进制的
UATR0 试验,从串口以9600,N,1的模式循环输出16进制的
人工智能/神经网络 #include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define
#include "iostream.h"
#include "iomanip.h"
#define N 20 //学习样本个数
#define IN 1 //输入层神经元数目
#define HN 8 //隐层神经元数目
#define ON 1 //输出层神经元数目
double P[IN] //单个样本输入数据
double T[ON] //单个样本教师数据
double W[HN][IN] //输入层至隐层权值
double V[ON][HN] //隐层至输出层权值 ...
数据结构 void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(
void insert_sort(int *a,int n)
{
if(n==1) return
insert_sort(a,n-1)
int temp=a[n-1]
for(int i=n-2 i>=0 i--)
{
if(temp<a[i])
a[i+1]=a[i]
else break
}
a[i+1]=temp
}
数据结构 递归方法解决N皇后问题
递归方法解决N皇后问题,依次显示所有路径。
多国语言处理 n algorithm for domain independent linear text segmentation This the Windows version of the C99 al
n algorithm for domain independent linear text segmentation
This the Windows version of the C99 algorithm that was presented in my
NAACL00 paper.
[Directories]
bin contains executables, JAR file and test files
classes compiled code as individual class files
doc NAACL 00 paper describing the alg ...
微处理器开发 S3C44B0x上面的N皇后问题程序
S3C44B0x上面的N皇后问题程序,使用串口(UART0)作为输入和输出。