-
btp2
linear 2 stat problem
- 2010-12-18 09:39:12下载
- 积分:1
-
distance-relay-protection
电力系统中配电网络的距离保护模型,可用于分布式电源并入后的保护方案(Distance protection model power system distribution network can be used for distributed power protection program incorporated )
- 2014-12-24 20:53:00下载
- 积分:1
-
此是 数据结构的课程中的一个经典的算法
此是 数据结构的课程中的一个经典的算法 -this is the data structure of the curriculum of a classical algorithm
- 2023-04-21 07:10:03下载
- 积分:1
-
nokia7110FZ
一个nokia7110屏的 protues仿真及源码完整资料,与大家学习交流(A nokia7110 screen protues simulation and source complete data, with everyone learning exchanges)
- 2012-12-24 15:30:28下载
- 积分:1
-
1
说明: 分解质因数的问题,采用c++语言编写,。。。。。(Using C++ algrithem)
- 2012-03-30 19:29:51下载
- 积分:1
-
计算机图形学案列41-50
说明: 该内容包括计算机图形学基本实验案列41-50的源代码,可直接运行。(This content includes the source code of 41-50, which can be run directly.)
- 2020-06-19 10:58:36下载
- 积分:1
-
红外遥控车
基于STC89c52RC的红外遥控车程序,四个电机,红外遥控38Khz载波(Infrared remote control vehicle program based on STC89c52RC, four motors, infrared remote control 38Khz carrier)
- 2020-06-18 10:00:01下载
- 积分:1
-
51黑论坛_继电器_万用表
万用表的制作万用表很好用的C语言程序,可以测量很多 例 如电阻 , 电压 ,电流 ,电容等(hdahlishlaohfgukjkipadkjbgasjbkbjbdasbj)
- 2018-01-28 12:08:13下载
- 积分:1
-
STM32网络通信代码
STM32单片机网络通信的代码,能够很好的解决通信不上的问题,里面包含了多种解决方式,主要是TCP通信,具备实时同行的作用,所以说这是比较好的源代码,纯粹手敲的,各位可以多下载来参考参考
- 2022-03-18 23:06:24下载
- 积分:1
-
TestSuite, for thinking in c++
//: TestSuite:Suite.cpp {0}
#include "Suite.h"
#include
#include
#include
using namespace std;
using namespace TestSuite;
void Suite::addtest(Test* t) throw(TestSuiteError)
{
// verify test is valid and has a stream:
if (t == 0)
{
throw TestSuiteError("Null test int Suite::addtest");
}
else if (osptr != NULL && !t->get_stream())
{
t->set_stream(osptr);
}
tests.push_back(t);
t->reset();
}
void Suite::addsuite(const Suite& s)
{
for (size_t i = 0; i < s.tests.size(); ++i)
&nb
- 2022-04-11 18:54:53下载
- 积分:1