-
C# 显示文件信息(大小、访问/修改时间、路径)示例
C# 显示文件信息
- 2013-02-11下载
- 积分:1
-
LCDTS12864-3
LCD TS12864-3的一些驱动。可显示中文。(LCD TS12864-3 a number of drivers. Can display Chinese.)
- 2008-04-07 16:44:05下载
- 积分:1
-
XS128PIT
基于飞思卡尔XS128的PIT定时的小例子。(Small example of the Freescale XS128 PIT timing. .)
- 2013-01-27 00:36:22下载
- 积分:1
-
hpmzr
Glib library file Developed source code
- 2018-08-06 20:14:16下载
- 积分:1
-
最新hooktest-demo
最新hooktest-demo
- 2022-12-08 07:00:03下载
- 积分:1
-
rbac访问控制
实现了基于RBAC的访问控制技术
利用C语言的QT库实现界面
- 2022-12-29 19:35:03下载
- 积分: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
-
MB784.pdf
STM3210C rev b. board schematic
- 2010-09-21 22:30:04下载
- 积分:1
-
DaVinciEVM_dsp
加载dsp项目时的gel文件,在连接硬件之前,加载gel必不可少,来描述处理器的存储空间映射(The gel loading dsp project files, before connecting the hardware, loaded gel is essential to describe the processor' s memory space mapping)
- 2013-10-31 09:59:35下载
- 积分:1
-
inverter3l
说明: 做了三电平并网逆变器的仿真,添加了不控整流制造谐波,(The simulation of three level grid connected inverters is made, harmonics are added with uncontrolled rectifier, and the influence of harmonics is observed.)
- 2018-03-23 17:11:53下载
- 积分:1