-
LED3264
32X64点阵频谱程序、32X64多功能时钟32X64(32X64 dot matrix spectrum program, 32X64 32X64 Multifunction Clock)
- 2015-10-29 16:08:00下载
- 积分:1
-
VC6_0-MATLAB7_x
一种VC++6.0与MATLAB混合编程的方法。有多个pdf文件。可以供需要者参考(One kind of VC++6.0 and MATLAB mixed programming method. There are several pdf files. Reference for those who need it can be)
- 2011-11-02 11:21:45下载
- 积分:1
-
EfonVNC
基于VC++开发的VNC服务端,非常有用方便,可用于远程调试使用(Developed based VC++ VNC server, very useful convenience for remote debugging)
- 2013-06-05 23:43:42下载
- 积分:1
-
2181916312320079115445374425
介绍了垂直同步的相关知识。
介绍了一种简单的计算帧速(FPS)的方法。
最后,我们列出了一份完整的天体动画程序清单。
(Introduce a vertical synchronization knowledge. Introduce a simple calculation帧速(FPS) method. Finally, we have listed a complete list of animation objects.)
- 2007-10-15 20:47:40下载
- 积分:1
-
CAN2.0规范
网上很多都是英语的,现在把CAN2.0规范中文版的分享出来,有需要的朋友可以下载下来学习了。(Chinese version of the CAN2.0 specification,)
- 2017-08-04 10:56:59下载
- 积分:1
-
面向对象参考试卷
说明: 面向对象技术与方法期末试卷,BIT 2018-2019-1(Object-Oriented Technology and Method Final Examination Paper)
- 2019-06-09 19:08:47下载
- 积分:1
-
ntservicecpl
用 C++ 创建简单的 Win32 服务程序(NTServCpl) 详细信息 < NT服务 > 《用 C++ 创建简单的 Win32 服务程序》一文的例子代码。描述如何用 Visual C++ 创建 Windows NT 服务程序。创建该服务仅用到一个 C++ 类,这个类提供服务与操作系统之间一个简单的接口。使用这个类实现自己的服务非常简单,只要改写少数几个基类中的虚拟函数即可。文中有三个源代码参考例子:这是其中之一—— NTServCpl:是一个控制面版程序,用来控制 NTService 服务; 其余两个分别为: NTService:是一个简单的 Win32 服务,它就是用本文所描述的方法建立的; NTServCtrl:是一个独立的程序例子,用它可以监控某个 Win32 服务;(create simple Win32 services (NTServCpl) detailed information lt; NT services gt; "C create simple Win32 service procedures," a text of the code examples. Describe how to use Visual C create Windows NT service procedures. Creation of the service only to a category C, the category of services provided between an operating system with a simple interface. Use this category to realize their services are very simple, as long as rewriting a few of the base class function can be virtual. The text has three reference source code example : This is one of them-- NTServCpl : console is a procedure used to control NTService services; The remaining two were : NTService : is a simple Win32 service, which is described in this paper with the method; NTServCtrl : one is independent the procedure)
- 2005-05-06 22:54:00下载
- 积分:1
-
商品管理系统stl-控制台
stl 实现的 商品管理系统 控制台编写。商品添加删除,二手商品,管理,海外商品。排序。价格。品管理类 CommodityManage 实现对购物篮中商品数据集合的管理,包含Commodity 指针作为数据成员(指向动态分配的 Commodity 数组),实现商品的添加、移除等操作。 动态数组在创建时根据初始大小动态分配内存, 当分配的内存占满后,再动态扩充容量。向购物篮添加商品:为简化处理,新增商品添加到现有数据的尾部,商品数量加 1; 如果添加商品的 Id 已经存在,只是累加购买数量。从购物篮删除商品: 根据用户指定的商品 Id,查找指定 Id 的商品是否存在,若存在则删除相应的商品信息,若不存在则提示信息。删除商品成功后,商品数量减 1。查看指定商品: 根据用户指定的商品 Id
- 2022-08-12 08:47:20下载
- 积分:1
-
Longest Common Subsequence (Dynamic Programming)
#include
#include
const int M = 100;
//記錄序列X和Y的LCS的長度
int c[M][M];
//二維陣列b記錄搜索方向,1-對角線方向;2-向上;3-向左;4-向上或向左
int b[M][M];
//lcs 記錄得到的LCS字元
char lcs[M];
// LCS最大長度
int nlcs = 0;
/*
功能:
- 2022-05-14 23:36:44下载
- 积分:1
-
CDictionary
简单英汉字典程序。功能包括装载单词信息,添加删除单词等。(Simple English-Chinese dictionary program. Features include loading the word information, add and delete words and so on.)
- 2014-02-04 20:59:40下载
- 积分:1