-
danshuangshitu
窗口编程是图象处理的一部分.单视图和双视图的切换练习程序,用VC++6.0实现,(window programming is part of the image processing. Single View and View-switching practice procedures, VC 6.0.)
- 2007-05-09 21:53:09下载
- 积分:1
-
kdta_pgogramming
说明: VC远程监控系统+源代码,非常好的远程监控源码,不错(VC remote monitoring system source code, very good remote monitoring source code, good)
- 2019-04-06 22:48:18下载
- 积分:1
-
滚球模型
说明: 2017年电子设计大赛滚球模型控制系统源代码(2017 Electronic Design Competition Ball Model Control System Source Code)
- 2020-06-25 06:00:02下载
- 积分:1
-
基于STM32F103C8T6的RC522 RFID模块调试(已调)
基于STM32F103C8T6的RC522 RFID模块调试,自带原理图和接线图,欢迎大家下载!
- 2022-06-20 03:09:51下载
- 积分:1
-
mythroad
mythroad application manager for china phones
- 2010-10-18 16:47:02下载
- 积分:1
-
rozter
这是一个用C实现7-bit的编码和解码的算法 非常有效 经过本人验证的,可用()
- 2018-05-12 15:49:09下载
- 积分:1
-
父亲孩子表示法孩子兄弟表示法
说明: 数据结构,实现树的父亲孩子表示、孩子兄弟表示(Data structure, father-child representation and child-brother representation of trees)
- 2019-04-09 14:16:10下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
ShutWindow
在安装应用程序的过程中有时需要实现关闭或重启计算机的功能。本实例将介绍如何用Visual C++控制计算机的关机和重启。(In the process of installing the application is sometimes necessary to achieve the shut down or restart the computer functions. This example describes how to use Visual C++ control computer shutdown and restart.)
- 2009-12-12 00:45:57下载
- 积分:1
-
up51s002
说明: 报警声程序 *
* 功能:操纵蜂鸣器发出报警声 *
* C51文件夹为C51文件实现 *
* ASM文件夹为汇编文件实现 (Alarm sound procedures** function: to manipulate the issue of alarm buzzer sound** C51 to C51 documents folder** ASM to achieve for the compilation of a document folder to achieve)
- 2009-08-11 11:51:46下载
- 积分:1