-
genetic-algorithm
基于C语言,实现遗传算法得到最优值,其中包括选择、交叉、变异操作(C-based, genetic algorithm to achieve optimal value, including selection, crossover and mutation)
- 2011-11-06 22:06:34下载
- 积分:1
-
quazip 解压缩源码
quazip 采用qt 进行解压和压缩,本源码来源官网,可以生成a文件和dll 文件,使用时将a文件和dll文件加入工程中,另外要将头文件加入到工程之中。经本人测试可用
- 2022-01-29 00:49:38下载
- 积分:1
-
CourseSelectSistem
绝对经典的学生选课系统,可以模仿一下,初学者可以自己尝试一下。。c语言爱好者(Absolute classic students elective course system, can mimic once, beginners can try.. C lover)
- 2010-12-28 22:11:30下载
- 积分:1
-
P18
Program to drive a graphic display
- 2009-05-21 19:50:37下载
- 积分:1
-
characterExpPoint
MO SIANG malaysia character exp hack
- 2014-10-09 01:14:19下载
- 积分:1
-
HTTP_IRC_bot
A remote administratio/bot source. Get command through either http or irc. Can execute a command on a specific time, uses simple XOR encryption for command file transfer. Also has embeded a replacemed connect-back shell. The structure of the command file is explained in the source. [Use visual studio 2008]
- 2009-03-02 02:40:13下载
- 积分:1
-
NVP6134B AHD RX 芯片支持300MP摄像机 NVP6134B_Product_Brief
NVP6134B AHD RX 芯片支持300MP摄像机(The NVP6134B AHD RX chip supports 300MP cameras)
- 2020-12-18 10:39:10下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
TCP、IP
题目1 FTP客户端与服务器端设计
题目2 邮件服务系统设计
题目3 HTTP通信系统设计(Title 1 FTP client and server-side design
Title 2 mail service system design
Title 3 HTTP communication system design)
- 2009-04-30 08:25:36下载
- 积分:1
-
超声波测距程序
多路超声波测距程序,通过定时中断的方式实现测距程序的编写,读者可根据自己需要进行扩展,最多可达15个超声波传感器同时测距,具有很好地参考价值
- 2022-06-29 04:07:21下载
- 积分:1