-
EightQueen_Start
八皇后游戏 用VC++和MFC编辑 界面美观 带音乐 按钮风格独特 源码简单(Eight Queens game with VC + + and MFC edit beautiful interface with music button style unique source)
- 2013-01-08 00:52:32下载
- 积分:1
-
[Haimen_M.-_Arnson_B.]_Visual_CPP_
C++ For Dummies is an introduction to the C++ language. C++ For Dummies starts from the beginning (where else?) and works its way from early concepts and through more sophisticated techniques. It doesn’t assume that you have any prior knowledge, at least, not of programming.
- 2014-08-09 03:45:29下载
- 积分:1
-
adaptiveParithmetic
自适应算术编码的例子,使用的是整数算术编码(Examples of adaptive arithmetic coding, the use of integer arithmetic coding)
- 2013-01-23 21:57:33下载
- 积分:1
-
wuziqi
五子棋小程序,基于MFC的编程,简单的小程序(Backgammon program, based MFC)
- 2012-12-09 15:56:37下载
- 积分:1
-
DeepBlue 51底包 V1.0
说明: 51单片机部分底包,包括led,定时器,pwm等(51 Single Chip Microcomputer Part Backpack)
- 2020-06-23 11:40:01下载
- 积分:1
-
搜索二叉树
#pragma once
template
struct Node
{
T _data;
Node* left;
Node* right;
Node(T val) :_data(val), left(NULL), right(NULL)
{}
~Node()
{}
};
template
class BinSearchTree
{
public:
BinSearchTree() :_root(0)
{}
void CreatTree(char* str)
{
int n = strlen(str);
CreatTree_(_root,str,n);
}
void comFather(char a,char b)
{
return comFather_(_root,a,b);
}
protected:
void comFather_(Node* root,char a,char b)
{
if (root->_data > a && root->_data < b)
{
cout _data _data > a && root->_data > b)
comFather_(root->left, a, b);
if (root->_data < a && root->_data < b)
comFather_(root->right, a, b);
}
void insertVal(Node*& root, char ch)
{
if (root == NULL)
{
root = new Node(ch);
return;
- 2022-02-28 12:33:19下载
- 积分:1
-
NCSentry
ncsentry此软件用来对发那科,三菱,西门子,马扎克,等数控系统模拟切削,传输程序用。(ncsentry This software is used to Fanuc, Mitsubishi, Siemens, Mazak, etc. CNC cutting system simulation, transmission program to use.)
- 2010-03-09 12:46:03下载
- 积分:1
-
8-adc
说明: linux下2440开发板ad采集转换程序(Linux based on 2440 board AD collect program)
- 2020-06-18 21:20:02下载
- 积分:1
-
sdd
足球机器人视觉子系统的改进.Soccer robot vision subsystem improvements.(Soccer robot vision subsystem improvements.)
- 2011-12-01 18:21:57下载
- 积分:1
-
进程间通信
说明: C#进程间通信机制-注意修改发送方中的接收方路径(C# interprocess communication mechanism - note the modification of the receiver path in the sender)
- 2020-10-22 09:20:07下载
- 积分:1