-
SRAM 简单测试
SRAM简单测试,测试其性能及其速度,判断SRAM是否可用(Test its performance and speed to determine if SRAM is available)
- 2020-07-10 09:58:55下载
- 积分:1
-
COM_PORT_SETTING
说明: 在EVC4.0环境下,设置串行通讯端口程序例(The EVC4.0 environment, set up procedures for cases of serial communication ports)
- 2009-08-27 13:47:41下载
- 积分:1
-
websocket-sharp-master
websocket-sharp-master example to develop
- 2018-09-26 12:56:58下载
- 积分:1
-
berth_allocation
港口泊位分配问题,采用贪心算法和模拟退火算法(Port berth allocation problem)
- 2020-07-02 20:40:01下载
- 积分:1
-
MatlabGUI转EXE(合订)
说明: MatlabGUI转EXE(合订)文档(MATLAB GUI to EXE Document)
- 2020-06-15 23:40:01下载
- 积分:1
-
顺序表
顺序表的初始化、插入、删除、查找实验,分别用四个子函数实现
- 2022-04-23 07:41:16下载
- 积分: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
-
HZK48s
Store contains 48 * 48 blackbody, including English and Japanese alphanumeric characters, special symbols(Store contains 48* 48 blackbody, including English and Japanese alphanumeric characters, special symbols)
- 2014-01-16 15:24:46下载
- 积分:1
-
Arduino-Nano-3
CC1101 example code in proteus whit arduino nano
- 2016-11-20 02:22:03下载
- 积分:1
-
3DHB
人体三维骨骼运动仿真研究基于OpenGL(Simulation of three-dimensional movement of human bone OpenGL-based)
- 2011-05-27 13:50:38下载
- 积分:1