-
LIBSVM算法代码和数据库读取程序
libsvm源码,可用于水质分析和风速预测等,还有完善的读取数据库程序,应用和算法都存在的。
- 2022-01-26 00:16:22下载
- 积分:1
-
对任意给定的n,用字典法和邻位互换法生成并打印全部排列。...
对任意给定的n,用字典法和邻位互换法生成并打印全部排列。-right to the arbitrary n, using the dictionary to law and Exchange Act o-generated and print all ranked.
- 2022-02-01 10:43:25下载
- 积分:1
-
Matrix operations class library, after debugging, completely available, the need...
矩阵运算的类库,经调试,完全可用,需要的同志可以免费下载-Matrix operations class library, after debugging, completely available, the need for comrades can be downloaded for free
- 2022-10-19 15:05:03下载
- 积分:1
-
只是试试,简单版贪吃蛇
只是试试,简单版贪吃蛇
- 2022-07-13 00:11:15下载
- 积分:1
-
捕鱼达人的C++代码
这个是在校期间的一份代码,主要是是实现捕鱼达人的功能,主要的技术是通过使用cocos2d来实现代码,还有就是采用的是c++的代码编写的,实现了捕鱼达人的基本功能,有实现鱼的游动,获得金币等功能。
- 2022-11-05 13:00:20下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
This program can determin very accurately the nature of the user input
This program can determin very accurately the nature of the user input
- 2022-08-10 03:45:07下载
- 积分:1
-
一个显示水波型曲面的工程,需要glut
一个显示水波型曲面的工程,需要glut
-show a wave-surface project requires glut
- 2023-06-04 10:55:02下载
- 积分:1
-
这是一个实现最优化计算的程序,采用的算法为共轭梯度法。...
这是一个实现最优化计算的程序,采用的算法为共轭梯度法。-This is a realization of optimal calculation procedure, the algorithm used to conjugate gradient method.
- 2022-07-22 03:40:05下载
- 积分:1
-
ASE的小例子
一个 aes 的例子,里面有详细的算法和 比较简单的例子,易懂。遵循 ase 的流程进行编写。。
- 2022-04-06 19:26:42下载
- 积分:1